clarify config code... a bit

This commit is contained in:
Devin Mullins
2007-11-11 00:09:33 +00:00
parent 9d99b06220
commit c5410f7ee6

View File

@@ -58,11 +58,10 @@ import Foreign (unsafePerformIO)
-- dzenUrgencyHook, or write your own. -- dzenUrgencyHook, or write your own.
-- --
-- Wire your urgency hook into the layoutHook by use of the withUrgencyHook -- 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"] } -- > , layoutHook = Layout $ withUrgencyHook dzenUrgencyHook { args = ["-bg", "darkgreen", "-xs", "1"] }
-- > $ configurableNavigation noNavigateBorders -- > $ layout
-- > $ layouts
-- --
-- It shouldn't hurt to have the "withUrgencyHook $" at the outermost layer, -- It shouldn't hurt to have the "withUrgencyHook $" at the outermost layer,
-- as above, as UrgencyHook is a LayoutModifier, and hence passes on any -- as above, as UrgencyHook is a LayoutModifier, and hence passes on any