Portability | unportable |
---|---|
Stability | unstable |
Maintainer | none |
XMonad.Layout.Named
Contents
Description
A module for assigning a name to a given layout.
- named :: String -> l a -> ModifiedLayout Named l a
- nameTail :: l a -> ModifiedLayout NameTail l a
Usage
You can use this module with the following in your ~/.xmonad/xmonad.hs
:
import XMonad.Layout.Named
Then edit your layoutHook
by adding the Named layout modifier
to some layout:
myLayout = named "real big" Full ||| (nameTail $ named "real big" $ Full) ||| etc.. main = xmonad defaultConfig { layoutHook = myLayout }
For more detailed instructions on editing the layoutHook see:
named :: String -> l a -> ModifiedLayout Named l aSource
Rename a layout.
nameTail :: l a -> ModifiedLayout NameTail l aSource
Remove the first word of the name.