xmonad-contrib-0.11.1: Third party extensions for xmonad

Portabilityunportable
Stabilitystable
Maintainerglasser@mit.edu
Safe HaskellNone

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

 import XMonad.Layout.Accordion

Then edit your layoutHook by adding the Accordion layout:

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

For more detailed instructions on editing the layoutHook see:

XMonad.Doc.Extending