Copyright | (c) 2008 Jussi Mäki |
---|---|
License | BSD-style (see xmonad/LICENSE) |
Maintainer | joamaki@gmail.com |
Stability | unstable |
Portability | unportable |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
A basic floating layout like SimpleFloat but without the decoration.
Synopsis
- simplestFloat :: Eq a => ModifiedLayout WindowArranger SimplestFloat a
- data SimplestFloat a
Usage:
You can use this module with the following in your
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 the tutorial and XMonad.Doc.Extending.
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 #