diff options
-rw-r--r-- | XMonad/Hooks/ManageDocks.hs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/XMonad/Hooks/ManageDocks.hs b/XMonad/Hooks/ManageDocks.hs index f1c1d54..60b1857 100644 --- a/XMonad/Hooks/ManageDocks.hs +++ b/XMonad/Hooks/ManageDocks.hs @@ -24,7 +24,6 @@ module XMonad.Hooks.ManageDocks ( ----------------------------------------------------------------------------- import XMonad import Foreign.C.Types (CLong) --- import Data.Maybe (catMaybes, fromMaybe) import Control.Monad import XMonad.Layout.LayoutModifier @@ -50,6 +49,13 @@ import XMonad.Layout.LayoutModifier -- -- > ,((modMask x, xK_b ), sendMessage ToggleStruts) -- +-- /Important note/: if you are switching from manual gaps +-- (defaultGaps in your config) to avoidStruts (recommended, since +-- manual gaps will probably be phased out soon), be sure to switch +-- off all your gaps (with mod-b) /before/ reloading your config with +-- avoidStruts! Toggling struts with a 'ToggleStruts' message will +-- not work unless your gaps are set to zero. +-- -- For detailed instructions on editing your key bindings, see -- "XMonad.Doc.Extending#Editing_key_bindings". |