Portability | unportable |
---|---|
Stability | unstable |
Maintainer | xmonad@s001.ethrael.com |
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.
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.