Portability | unportable |
---|---|
Stability | stable |
Maintainer | arcatan@kapsi.fi |
Safe Haskell | None |
XMonad.Actions.FindEmptyWorkspace
Contents
Description
Find an empty workspace.
Usage
To use, import this module into your ~/.xmonad/xmonad.hs
:
import XMonad.Actions.FindEmptyWorkspace
and add the desired keybindings, for example:
, ((modm, xK_m ), viewEmptyWorkspace) , ((modm .|. shiftMask, xK_m ), tagToEmptyWorkspace)
Now you can jump to an empty workspace with mod-m
. Mod-shift-m
will tag the current window to an empty workspace and view it.
For detailed instructions on editing your key bindings, see XMonad.Doc.Extending.
Find and view an empty workspace. Do nothing if all workspaces are in use.
Tag current window to an empty workspace and view it. Do nothing if all workspaces are in use.
Send current window to an empty workspace. Do nothing if all workspaces are in use.