xmonad-contrib-0.9: Third party extensions for xmonad

Portabilityunportable
Stabilityunstable
MaintainerAndrea Rossato <andrea.rossato@unibz.it>

XMonad.Layout.DragPane

Contents

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:

 myLayout = dragPane Horizontal 0.1 0.5 ||| Full ||| etc..
 main = xmonad defaultConfig { layoutHook = myLayout }

For more detailed instructions on editing the layoutHook see:

XMonad.Doc.Extending