mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-07-29 03:01:51 -07:00
XMonad
Actions
BluetileCommands.hs
Commands.hs
ConstrainedResize.hs
CopyWindow.hs
CycleRecentWS.hs
CycleSelectedLayouts.hs
CycleWS.hs
CycleWindows.hs
DeManage.hs
DwmPromote.hs
DynamicWorkspaceGroups.hs
DynamicWorkspaceOrder.hs
DynamicWorkspaces.hs
FindEmptyWorkspace.hs
FlexibleManipulate.hs
FlexibleResize.hs
FloatKeys.hs
FloatSnap.hs
FocusNth.hs
GridSelect.hs
GroupNavigation.hs
KeyRemap.hs
Launcher.hs
MessageFeedback.hs
MouseGestures.hs
MouseResize.hs
Navigation2D.hs
NoBorders.hs
OnScreen.hs
PerWorkspaceKeys.hs
PhysicalScreens.hs
Plane.hs
Promote.hs
RandomBackground.hs
RotSlaves.hs
Search.hs
SimpleDate.hs
SinkAll.hs
SpawnOn.hs
Submap.hs
SwapWorkspaces.hs
TagWindows.hs
TopicSpace.hs
UpdateFocus.hs
UpdatePointer.hs
Warp.hs
WindowBringer.hs
WindowGo.hs
WindowMenu.hs
WindowNavigation.hs
WithAll.hs
Workscreen.hs
WorkspaceCursors.hs
WorkspaceNames.hs
Config
Doc
Hooks
Layout
Prompt
Util
Doc.hs
Prompt.hs
scripts
tests
LICENSE
README
Setup.lhs
xmonad-contrib.cabal
35 lines
1.0 KiB
Haskell
35 lines
1.0 KiB
Haskell
-----------------------------------------------------------------------------
|
|
-- |
|
|
-- Module : XMonad.Actions.SinkAll
|
|
-- License : BSD3-style (see LICENSE)
|
|
-- Stability : unstable
|
|
-- Portability : unportable
|
|
--
|
|
-- 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.
|
|
-----------------------------------------------------------------------------
|
|
|
|
module XMonad.Actions.SinkAll (
|
|
-- * Usage
|
|
-- $usage
|
|
|
|
sinkAll) where
|
|
|
|
import XMonad.Actions.WithAll (sinkAll)
|
|
|
|
-- $usage
|
|
--
|
|
-- You can use this module with the following in your @~\/.xmonad\/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
|
|
-- "XMonad.Doc.Extending#Editing_key_bindings".
|