diff options
author | Devin Mullins <me@twifkak.com> | 2007-11-11 01:09:33 +0100 |
---|---|---|
committer | Devin Mullins <me@twifkak.com> | 2007-11-11 01:09:33 +0100 |
commit | 33132d2a13aa9d4b4e476f791a3eea0d886dcf93 (patch) | |
tree | eededdd82fbc66bb278cad061391c9942005dcaa /XMonad/Hooks | |
parent | 76eff84c6a60f7d92a588121d30d140f1191d375 (diff) | |
download | XMonadContrib-33132d2a13aa9d4b4e476f791a3eea0d886dcf93.tar.gz XMonadContrib-33132d2a13aa9d4b4e476f791a3eea0d886dcf93.tar.xz XMonadContrib-33132d2a13aa9d4b4e476f791a3eea0d886dcf93.zip |
clarify config code... a bit
darcs-hash:20071111000933-78224-9706f2df9492cadb87966ef33f03002240b25e1a.gz
Diffstat (limited to 'XMonad/Hooks')
-rw-r--r-- | XMonad/Hooks/UrgencyHook.hs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/XMonad/Hooks/UrgencyHook.hs b/XMonad/Hooks/UrgencyHook.hs index ea0e314..3cd881b 100644 --- a/XMonad/Hooks/UrgencyHook.hs +++ b/XMonad/Hooks/UrgencyHook.hs @@ -58,11 +58,10 @@ import Foreign (unsafePerformIO) -- dzenUrgencyHook, or write your own. -- -- Wire your urgency hook into the layoutHook by use of the withUrgencyHook --- function. My setup, for example: +-- function. For example, add this to your config record: -- --- > layoutHook' = Layout $ withUrgencyHook dzenUrgencyHook { args = ["-bg", "darkgreen", "-xs", "1"] } --- > $ configurableNavigation noNavigateBorders --- > $ layouts +-- > , layoutHook = Layout $ withUrgencyHook dzenUrgencyHook { args = ["-bg", "darkgreen", "-xs", "1"] } +-- > $ layout -- -- It shouldn't hurt to have the "withUrgencyHook $" at the outermost layer, -- as above, as UrgencyHook is a LayoutModifier, and hence passes on any |