mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-05-19 11:30:22 -07:00
Essentially, whenever the tutorial actually has decent material on the subject matter. The replacement is roughly done as follows: - logHook → tutorial - keybindings → tutorial, as this is thoroughly covered - manageHook → tutorial + X.D.Extending, as the manageHook stuff the tutorial talks about is a little bit of an afterthought. - X.D.Extending (on its own) → tutorial + X.D.Extending - layoutHook → tutorial + X.D.Extending, as the tutorial, while talking about layouts, doesn't necessarily have a huge focus there. - mouse bindings → leave this alone, as the tutorial does not at all talk about them.
36 lines
1.2 KiB
Haskell
36 lines
1.2 KiB
Haskell
-----------------------------------------------------------------------------
|
|
-- |
|
|
-- Module : XMonad.Actions.SinkAll
|
|
-- Description : (DEPRECATED) Push floating windows back into tiling.
|
|
-- 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 {-# DEPRECATED "Use XMonad.Actions.WithAll instead" #-} (
|
|
-- * 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
|
|
-- <https://xmonad.org/TUTORIAL.html#customizing-xmonad the tutorial>.
|