xmonad-contrib-0.12: Third party extensions for xmonad

Copyright(c) Edward Z. Yang
LicenseBSD-style (see LICENSE)
Maintainer<ezyang@cs.stanford.edu>
Stabilityunstable
Portabilityunportable
Safe HaskellNone
LanguageHaskell98

XMonad.Layout.PerScreen

Contents

Description

Configure layouts based on the width of your screen; use your favorite multi-column layout for wide screens and a full-screen layout for small ones.

Synopsis

Usage

You can use this module by importing it into your ~/.xmonad/xmonad.hs file:

import XMonad.Layout.PerScreen

and modifying your layoutHook as follows (for example):

layoutHook = ifWider 1280 (Tall 1 (3/100) (1/2) ||| Full) Full

Replace any of the layouts with any arbitrarily complicated layout. ifWider can also be used inside other layout combinators.

data PerScreen l1 l2 a Source

Instances

(LayoutClass l1 a, LayoutClass l2 a, Show a) => LayoutClass (PerScreen l1 l2) a Source 
(Read (l1 a), Read (l2 a)) => Read (PerScreen l1 l2 a) Source 
(Show (l1 a), Show (l2 a)) => Show (PerScreen l1 l2 a) Source 

ifWider Source

Arguments

:: (LayoutClass l1 a, LayoutClass l2 a) 
=> Dimension

target screen width

-> l1 a

layout to use when the screen is wide enough

-> l2 a

layout to use otherwise

-> PerScreen l1 l2 a