xmonad-contrib-0.7: Third party extensions for xmonadSource codeContentsIndex
XMonad.Layout.HintedTile
Portabilityunportable
Stabilityunstable
MaintainerPeter De Wachter <pdewacht@gmail.com> Andrea Rossato <andrea.rossato@unibz.it>
Contents
Usage
Description
A gapless tiled layout that attempts to obey window size hints, rather than simply ignoring them.
Synopsis
data HintedTile a = HintedTile {
nmaster :: Int
delta :: Rational
frac :: Rational
alignment :: Alignment
orientation :: Orientation
}
data Orientation
= Wide
| Tall
data Alignment
= TopLeft
| Center
| BottomRight
Usage

You can use this module with the following in your ~/.xmonad/xmonad.hs:

 import XMonad.Layout.HintedTile

Then edit your layoutHook by adding the HintedTile layout:

 myLayouts = HintedTile 1 0.1 0.5 TopLeft Tall ||| Full ||| etc..
 main = xmonad defaultConfig { layoutHook = myLayouts }

For more detailed instructions on editing the layoutHook see:

XMonad.Doc.Extending#Editing_the_layout_hook

data HintedTile a Source
Constructors
HintedTile
nmaster :: Int
delta :: Rational
frac :: Rational
alignment :: Alignment
orientation :: Orientation
show/hide Instances
data Orientation Source
Constructors
Wide
Tall
show/hide Instances
data Alignment Source
Constructors
TopLeft
Center
BottomRight
show/hide Instances
Produced by Haddock version 2.3.0