xmonad-contrib-0.12: Third party extensions for xmonad

Portabilityunportable
Stabilityunstable
Maintainer<ezyang@cs.stanford.edu>
Safe HaskellNone

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

Instances

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

ifWider

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