xmonad-contrib-0.17.1.9: Community-maintained extensions for xmonad
Copyright(c) Jeremy Apthorp
LicenseBSD-style (see LICENSE)
MaintainerJeremy Apthorp <nornagon@gmail.com>
Stabilityunstable
Portabilityportable
Safe HaskellSafe-Inferred
LanguageHaskell2010

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.hs:

import XMonad.Layout.Dishes

Then edit your layoutHook by adding the Dishes layout:

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

For more detailed instructions on editing the layoutHook see the tutorial and XMonad.Doc.Extending.

data Dishes a Source #

Constructors

Dishes Int Rational 

Instances

Instances details
LayoutClass Dishes a Source # 
Instance details

Defined in XMonad.Layout.Dishes

Read (Dishes a) Source # 
Instance details

Defined in XMonad.Layout.Dishes

Show (Dishes a) Source # 
Instance details

Defined in XMonad.Layout.Dishes

Methods

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

show :: Dishes a -> String #

showList :: [Dishes a] -> ShowS #