xmonad-contrib-0.5: Third party extensions for xmonadSource codeContentsIndex
XMonad.Actions.RotView
Portabilityunportable
Stabilityunstable
MaintainerDavid Roundy <droundy@darcs.net>
Contents
Usage
Description
Provides bindings to cycle through non-empty workspaces.
Synopsis
rotView :: Bool -> X ()
Usage

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

 import XMonad.Actions.RotView

Then add appropriate key bindings, such as:

   , ((modMask x .|. shiftMask, xK_Right), rotView True)
   , ((modMask x .|. shiftMask, xK_Left), rotView False)

For detailed instructions on editing your key bindings, see XMonad.Doc.Extending#Editing_key_bindings.

rotView :: Bool -> X ()Source
Cycle through non-empty workspaces. True --> cycle in the forward direction. Note that workspaces cycle in order by tag, so if your workspaces are not in tag-order, the cycling might seem wonky.
Produced by Haddock version 2.3.0