 | xmonad-contrib-0.7: Third party extensions for xmonad | Contents | Index |
|
| XMonad.Layout.HintedGrid | | Portability | unportable | | Stability | unstable | | Maintainer | <l.mai@web.de> |
|
|
|
|
|
| Description |
| A not so simple layout that attempts to put all windows in a square grid
while obeying their size hints.
|
|
| Synopsis |
|
|
|
|
| Usage
|
|
You can use this module with the following in your ~/.xmonad/xmonad.hs:
import XMonad.Layout.HintedGrid
Then edit your layoutHook by adding the Grid layout:
myLayouts = Grid False ||| Full ||| etc..
main = xmonad defaultConfig { layoutHook = myLayouts }
For more detailed instructions on editing the layoutHook see
XMonad.Doc.Extending#Editing_the_layout_hook.
|
|
| data Grid a |
| Automatic mirroring of hinted layouts doesn't work very well, so this
Grid comes with built-in mirroring. Grid False is the normal layout,
Grid True is the mirrored variant (rotated by 90 degrees).
| | Constructors | | Instances | |
|
|
| arrange :: Bool -> Rectangle -> [Window] -> X [(Window, Rectangle)] |
| The internal function for computing the grid layout.
|
|
| Produced by Haddock version 0.8 |