| Copyright | (c) Karsten Schoelzel <kuser@gmx.de> | 
|---|---|
| License | BSD | 
| Maintainer | Karsten Schoelzel <kuser@gmx.de> | 
| Stability | stable | 
| Portability | unportable | 
| Safe Haskell | None | 
| Language | Haskell98 | 
XMonad.Actions.FocusNth
Contents
Description
Focus the nth window of the current workspace.
Usage
Add the import to your ~/.xmonad/xmonad.hs:
import XMonad.Actions.FocusNth
Then add appropriate keybindings, for example:
-- mod4-[1..9] @@ Switch to window N
++ [((modm, k), focusNth i)
    | (i, k) <- zip [0 .. 8] [xK_1 ..]]For detailed instructions on editing your key bindings, see XMonad.Doc.Extending.