xmonad-contrib-0.7: Third party extensions for xmonadContentsIndex
XMonad.Layout.StackTile
Portabilityunportable
Stabilityunstable
MaintainerRickard Gustafsson <acura@allyourbase.se>
Contents
Usage
Description
A stacking layout, like dishes but with the ability to resize master pane. Moastly usefull on small screens.
Synopsis
data StackTile a = StackTile !Int !Rational !Rational
Usage

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

 import XMonad.Layout.StackTile

Then edit your layoutHook by adding the ResizableTile layout:

 myLayouts =  StackTile 1 (3/100) (1/2) [] ||| etc..
 main = xmonad defaultConfig { layoutHook = myLayouts }

For more detailed instructions on editing the layoutHook see:

XMonad.Doc.Extending#Editing_the_layout_hook

data StackTile a
Constructors
StackTile !Int !Rational !Rational
show/hide Instances
LayoutClass StackTile a
Read (StackTile a)
Show (StackTile a)
Produced by Haddock version 0.8