xmonad-contrib-0.11.4: Third party extensions for xmonad

Copyright(c) Jeremy Apthorp
LicenseBSD-style (see LICENSE)
MaintainerJeremy Apthorp <nornagon@gmail.com>
Stabilityunstable
Portabilityportable
Safe HaskellNone
LanguageHaskell98

XMonad.Layout.Dishes

Contents

Description

Dishes is a layout that stacks extra windows underneath the master windows.

Synopsis

Usage

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

import XMonad.Layout.Dishes

Then edit your layoutHook by adding the Dishes layout:

myLayout = Dishes 2 (1/6) ||| Full ||| etc..
main = xmonad defaultConfig { layoutHook = myLayout }

For more detailed instructions on editing the layoutHook see:

XMonad.Doc.Extending

data Dishes a Source

Constructors

Dishes Int Rational 

Instances

LayoutClass Dishes a Source 
Read (Dishes a) Source 
Show (Dishes a) Source