xmonad-contrib-0.12: Third party extensions for xmonad

Copyright(c) Miikka Koskinen 2007
LicenseBSD3-style (see LICENSE)
Maintainerxmonad@s001.ethrael.com
Stabilityunstable
Portabilityunportable
Safe HaskellNone
LanguageHaskell98

XMonad.Actions.Promote

Contents

Description

Alternate promote function for xmonad.

Moves the focused window to the master pane. All other windows retain their order. If focus is in the master, swap it with the next window in the stack. Focus stays in the master.

Synopsis

Usage

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

   import XMonad.Actions.Promote

then add a keybinding or substitute promote in place of swapMaster:

  , ((modm,               xK_Return), promote)

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

promote :: X () Source

Move the focused window to the master pane. All other windows retain their order. If focus is in the master, swap it with the next windo in the stack. Focus stays in the master.