| Copyright | (c) Lukas Mai | 
|---|---|
| License | BSD-style (see LICENSE) | 
| Maintainer | <l.mai@web.de> | 
| Stability | unstable | 
| Portability | unportable | 
| Safe Haskell | None | 
| Language | Haskell98 | 
XMonad.Layout.Grid
Contents
Description
A simple layout that attempts to put all windows in a square grid.
Usage
You can use this module with the following in your ~/.xmonad/xmonad.hs:
import XMonad.Layout.Grid
Then edit your layoutHook by adding the Grid layout:
myLayout = Grid ||| Full ||| etc..
main = xmonad def { layoutHook = myLayout }You can also specify an aspect ratio for Grid to strive for with the GridRatio constructor. For example, if you want Grid to try to make a grid four windows wide and three windows tall, you could use
myLayout = GridRatio (4/3) ||| etc.
For more detailed instructions on editing the layoutHook see: