xmonad-contrib-0.18.0.9: Community-maintained extensions for xmonad
Copyright(c) glasser@mit.edu
LicenseBSD
Maintainerglasser@mit.edu
Stabilitystable
Portabilityunportable
Safe HaskellSafe-Inferred
LanguageHaskell2010

XMonad.Layout.Accordion

Contents

Description

LayoutClass that puts non-focused windows in ribbons at the top and bottom of the screen.

Synopsis

Usage

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

import XMonad.Layout.Accordion

Then edit your layoutHook by adding the Accordion layout:

myLayout = Accordion ||| Full ||| etc..
main = xmonad def { layoutHook = myLayout }

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