diff options
author | Andrea Rossato <andrea.rossato@unibz.it> | 2007-12-31 11:18:20 +0100 |
---|---|---|
committer | Andrea Rossato <andrea.rossato@unibz.it> | 2007-12-31 11:18:20 +0100 |
commit | fe42675cca694ebdfb08bbefc893f23c95dde9ae (patch) | |
tree | a70c752fce70c08180867f2d395e252fecb0f7a6 | |
parent | 690f9878a600818be24788fd7aa85f52dcb6ad8d (diff) | |
download | XMonadContrib-fe42675cca694ebdfb08bbefc893f23c95dde9ae.tar.gz XMonadContrib-fe42675cca694ebdfb08bbefc893f23c95dde9ae.tar.xz XMonadContrib-fe42675cca694ebdfb08bbefc893f23c95dde9ae.zip |
ManageDocks: some documentation fixes
darcs-hash:20071231101820-32816-2b9d19431d22dfa25d0e0e0baaa11a69b34ff92c.gz
-rw-r--r-- | XMonad/Hooks/ManageDocks.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/XMonad/Hooks/ManageDocks.hs b/XMonad/Hooks/ManageDocks.hs index 6d2fffc..69b7e16 100644 --- a/XMonad/Hooks/ManageDocks.hs +++ b/XMonad/Hooks/ManageDocks.hs @@ -42,12 +42,15 @@ import Control.Monad -- so-called "gap" support. First, you must add it to your list of layouts: -- -- > layoutHook = avoidStruts (tall ||| mirror tall ||| ...) +-- > where tall = Tall 1 (3/100) (1/2) -- -- 'AvoidStruts' also supports toggling the dock gap, add a keybinding similar -- to: -- --- > ,((modMask, xK_b ), sendMessage ToggleStruts) +-- > ,((modMask x, xK_b ), sendMessage ToggleStruts) -- +-- For detailed instructions on editing your key bindings, see +-- "XMonad.Doc.Extending#Editing_key_bindings". -- | -- Detects if the given window is of type DOCK and if so, reveals it, but does |