| |||||||||
| |||||||||
| |||||||||
Description | |||||||||
Layouts that splits the screen either horizontally or vertically and shows two windows. The first window is always the master window, and the other is either the currently focused window or the second window in layout order. | |||||||||
Synopsis | |||||||||
| |||||||||
Usage | |||||||||
You can use this module with the following in your ~/.xmonad/xmonad.hs: import XMonad.Layout.DragPane Then edit your layoutHook by adding the DragPane layout: myLayouts = dragPane Horizontal 0.1 0.5 ||| Full ||| etc.. main = xmonad defaultConfig { layoutHook = myLayouts } For more detailed instructions on editing the layoutHook see: | |||||||||
dragPane :: DragType -> Double -> Double -> DragPane a | |||||||||
data DragPane a | |||||||||
| |||||||||
data DragType | |||||||||
| |||||||||
Produced by Haddock version 0.8 |