xmonad-contrib-0.7: Third party extensions for xmonadContentsIndex
XMonad.Layout.TwoPane
Portabilityunportable
Stabilityunstable
MaintainerSpencer Janssen <sjanssen@cse.unl.edu>
Contents
Usage
Description
A layout that splits the screen horizontally and shows two windows. The left window is always the master window, and the right is either the currently focused window or the second window in layout order.
Synopsis
data TwoPane a = TwoPane Rational Rational
Usage

You can use this module with the following in your ~/.xmonad/xmonad.hs:

 import XMonad.Layout.TwoPane

Then edit your layoutHook by adding the TwoPane layout:

 myLayouts = TwoPane (3/100) (1/2)  ||| Full ||| etc..
 main = xmonad defaultConfig { layoutHook = myLayouts }

For more detailed instructions on editing the layoutHook see:

XMonad.Doc.Extending#Editing_the_layout_hook

data TwoPane a
Constructors
TwoPane Rational Rational
show/hide Instances
LayoutClass TwoPane a
Read (TwoPane a)
Show (TwoPane a)
Produced by Haddock version 0.8