| Copyright | (c) 2008 Jussi Mäki | 
|---|---|
| License | BSD-style (see xmonad/LICENSE) | 
| Maintainer | joamaki@gmail.com | 
| Stability | unstable | 
| Portability | unportable | 
| Safe Haskell | None | 
| Language | Haskell98 | 
XMonad.Layout.SimplestFloat
Contents
Description
A basic floating layout like SimpleFloat but without the decoration.
- simplestFloat :: Eq a => ModifiedLayout WindowArranger SimplestFloat a
- data SimplestFloat a
Usage:
You can use this module with the following in your
 ~/.xmonad/xmonad.hs:
import XMonad.Layout.SimplestFloat
Then edit your layoutHook by adding the SimplestFloat layout:
myLayout = simplestFloat ||| Full ||| etc..
main = xmonad def { layoutHook = myLayout }For more detailed instructions on editing the layoutHook see:
simplestFloat :: Eq a => ModifiedLayout WindowArranger SimplestFloat a Source
A simple floating layout where every window is placed according to the window's initial attributes.
data SimplestFloat a Source
Instances