xmonad-contrib-0.15: Third party extensions for xmonad

Copyright(c) 2009 Ilya Portnov
LicenseBSD3-style (see LICENSE)
MaintainerIlya Portnov <portnov84@rambler.ru>
Stabilityunstable
Portabilityunportable
Safe HaskellNone
LanguageHaskell98

XMonad.Layout.Column

Contents

Description

Provides Column layout that places all windows in one column. Windows heights are calculated from equation: H1H2 = H2H3 = ... = q, where q is given. With Shrink/Expand messages you can change the q value.

Synopsis

Usage

This module defines layot named Column. It places all windows in one column. Windows heights are calculated from equation: H1H2 = H2H3 = ... = q, where q is given (thus, windows heights are members of geometric progression). With Shrink/Expand messages one can change the q value.

You can use this module by adding folowing in your xmonad.hs:

import XMonad.Layout.Column

Then add layouts to your layoutHook:

myLayoutHook = Column 1.6 ||| ...

In this example, each next window will have height 1.6 times less then previous window.

data Column a Source #

Constructors

Column Float 
Instances
LayoutClass Column a Source # 
Instance details

Defined in XMonad.Layout.Column

Read (Column a) Source # 
Instance details

Defined in XMonad.Layout.Column

Show (Column a) Source # 
Instance details

Defined in XMonad.Layout.Column

Methods

showsPrec :: Int -> Column a -> ShowS #

show :: Column a -> String #

showList :: [Column a] -> ShowS #