| ||||||||
| ||||||||
| ||||||||
Description | ||||||||
This module provides a method to cease management of a window without unmapping it. This is especially useful for applications like kicker and gnome-panel. To make a panel display correctly with xmonad:
| ||||||||
Synopsis | ||||||||
| ||||||||
Usage | ||||||||
To use demanage, add this import to your ~/.xmonad/xmonad.hs: import XMonad.Actions.DeManage And add a keybinding, such as: , ((modMask x, xK_d ), withFocused demanage) For detailed instructions on editing your key bindings, see XMonad.Doc.Extending#Editing_key_bindings. | ||||||||
demanage :: Window -> X () | ||||||||
Stop managing the currently focused window. | ||||||||
Produced by Haddock version 0.8 |