xmonad-contrib-bluetilebranch-0.8.1.2: Third party extensions for xmonadSource codeContentsIndex
XMonad.Layout.FixedColumn
Portabilityunportable
Stabilityunstable
MaintainerJustin Bogner <mail@justinbogner.com>
Contents
Usage
Description
A layout much like Tall, but using a multiple of a window's minimum resize amount instead of a percentage of screen to decide where to split. This is useful when you usually leave a text editor or terminal in the master pane and like it to be 80 columns wide.
Synopsis
data FixedColumn a = FixedColumn !Int !Int !Int !Int
Usage

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

 import XMonad.Layout.FixedColumn

Then edit your layoutHook by adding the FixedColumn layout:

 myLayouts = FixedColumn 1 20 80 10 ||| Full ||| etc..
 main = xmonad defaultConfig { layoutHook = myLayouts }

For more detailed instructions on editing the layoutHook see:

XMonad.Doc.Extending

data FixedColumn a Source
A tiling mode based on preserving a nice fixed width window. Supports Shrink, Expand and IncMasterN.
Constructors
FixedColumn !Int !Int !Int !Int
show/hide Instances
Produced by Haddock version 2.4.2