| Copyright | (c) Lukas Mai | 
|---|---|
| License | BSD-style (see LICENSE) | 
| Maintainer | <l.mai@web.de> | 
| Stability | unstable | 
| Portability | unportable | 
| Safe Haskell | None | 
| Language | Haskell2010 | 
XMonad.Layout.HintedGrid
Contents
Description
A not so simple layout that attempts to put all windows in a square grid while obeying their size hints.
Usage
You can use this module with the following in your xmonad.hs:
import XMonad.Layout.HintedGrid
Then edit your layoutHook by adding the Grid layout:
myLayout = Grid False ||| Full ||| etc..
main = xmonad def { layoutHook = myLayout }You can also specify an aspect ratio for Grid to strive for with the GridRatio constructor:
myLayout = GridRatio (4/3) False ||| etc.
For more detailed instructions on editing the layoutHook see the tutorial and XMonad.Doc.Extending.
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).
Instances
| LayoutClass Grid Window Source # | |
Defined in XMonad.Layout.HintedGrid Methods runLayout :: Workspace WorkspaceId (Grid Window) Window -> Rectangle -> X ([(Window, Rectangle)], Maybe (Grid Window)) # doLayout :: Grid Window -> Rectangle -> Stack Window -> X ([(Window, Rectangle)], Maybe (Grid Window)) # pureLayout :: Grid Window -> Rectangle -> Stack Window -> [(Window, Rectangle)] # emptyLayout :: Grid Window -> Rectangle -> X ([(Window, Rectangle)], Maybe (Grid Window)) # handleMessage :: Grid Window -> SomeMessage -> X (Maybe (Grid Window)) # pureMessage :: Grid Window -> SomeMessage -> Maybe (Grid Window) # description :: Grid Window -> String #  | |
| Read (Grid a) Source # | |
| Show (Grid a) Source # | |