xmonad-contrib-0.17.0.9: Community-maintained extensions for xmonad
Copyright(c) Rickard Gustafsson <acura@allyourbase.se>
LicenseBSD-style (see LICENSE)
MaintainerRickard Gustafsson <acura@allyourbase.se>
Stabilityunstable
Portabilityunportable
Safe HaskellSafe-Inferred
LanguageHaskell2010

XMonad.Layout.StackTile

Contents

Description

A stacking layout, like dishes but with the ability to resize master pane. Mostly useful on small screens.

Synopsis

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 StackTile layout:

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

For more detailed instructions on editing the layoutHook see:

XMonad.Doc.Extending