xmonad-contrib-0.17.1.9: Community-maintained extensions for xmonad
Copyright(c) Chayanon Wichitrnithed
LicenseBSD3-style (see LICENSE)
MaintainerChayanon Wichitrnithed <namowi@gatech.edu>
Stabilityunstable
Portabilityunportable
Safe HaskellSafe-Inferred
LanguageHaskell2010

XMonad.Layout.TwoPanePersistent

Contents

Description

This layout is the same as XMonad.Layout.TwoPane except that it keeps track of the slave window that is alongside the master pane. In other words, it prevents the slave pane from changing after the focus goes back to the master pane.

Synopsis

Usage

Import the module in xmonad.hs:

import XMonad.Layout.TwoPanePersistent

Then add the layout to the layoutHook:

myLayout = TwoPanePersistent Nothing (3/100) (1/2) ||| Full ||| etc..
main = xmonad def { layoutHook = myLayout }

data TwoPanePersistent a Source #

Constructors

TwoPanePersistent 

Fields