xmonad-contrib-0.16.999: Community-maintained extensions extensions for xmonad
Copyright(c) 2008 Justin Bogner <mail@justinbogner.com>
LicenseBSD3-style (as xmonad)
MaintainerJustin Bogner <mail@justinbogner.com>
Stabilityunstable
Portabilityunportable
Safe HaskellNone
LanguageHaskell98

XMonad.Layout.FixedColumn

Contents

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

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:

myLayout = FixedColumn 1 20 80 10 ||| Full ||| etc..
main = xmonad def { layoutHook = myLayout }

For more detailed instructions on editing the layoutHook see:

XMonad.Doc.Extending