xmonad-contrib-0.18.0.9: Community-maintained extensions for xmonad
LicenseBSD3-style (see LICENSE)
Stabilityunstable
Portabilityunportable
Safe HaskellSafe-Inferred
LanguageHaskell2010

XMonad.Actions.SinkAll

Contents

Description

Deprecated: Use XMonad.Actions.WithAll instead

Provides a simple binding that pushes all floating windows on the current workspace back into tiling. Note that the functionality of this module has been folded into the more general XMonad.Actions.WithAll; this module simply re-exports the sinkAll function for backwards compatibility.

Synopsis

Usage

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

import XMonad.Actions.SinkAll

then add a keybinding; for example:

  , ((modm .|. shiftMask, xK_t), sinkAll)

For detailed instructions on editing your key bindings, see the tutorial.

sinkAll :: X () Source #

Un-float all floating windows on the current workspace.