| |||||||||||||||||||||
| |||||||||||||||||||||
| |||||||||||||||||||||
| Description | |||||||||||||||||||||
| BoringWindows is an extension to allow windows to be marked boring | |||||||||||||||||||||
| Synopsis | |||||||||||||||||||||
| |||||||||||||||||||||
| Usage | |||||||||||||||||||||
You can use this module with the following in your ~/.xmonad/xmonad.hs: import XMonad.Layout.BoringWindows Then edit your layoutHook by adding the layout modifier: myLayouts = boringWindows (Full ||| etc..)
main = xmonad defaultConfig { layoutHook = myLayouts }
Then to your keybindings, add: , ((modMask, xK_j), focusUp) , ((modMask, xk_k), focusDown) For more detailed instructions on editing the layoutHook see: | |||||||||||||||||||||
| boringWindows :: (LayoutClass l a, Eq a) => l a -> ModifiedLayout BoringWindows l a | |||||||||||||||||||||
| boringAuto :: (LayoutClass l a, Eq a) => l a -> ModifiedLayout BoringWindows l a | |||||||||||||||||||||
| Mark windows that are not given rectangles as boring | |||||||||||||||||||||
| markBoring :: X () | |||||||||||||||||||||
| clearBoring :: X () | |||||||||||||||||||||
| focusUp :: X () | |||||||||||||||||||||
| focusDown :: X () | |||||||||||||||||||||
| data UpdateBoring | |||||||||||||||||||||
| |||||||||||||||||||||
| data BoringMessage | |||||||||||||||||||||
| |||||||||||||||||||||
| data BoringWindows a | |||||||||||||||||||||
| |||||||||||||||||||||
| Produced by Haddock version 2.4.2 |