diff options
author | gwern0 <gwern0@gmail.com> | 2007-11-06 22:15:37 +0100 |
---|---|---|
committer | gwern0 <gwern0@gmail.com> | 2007-11-06 22:15:37 +0100 |
commit | cf1e49ab7a4be924e2ba9e695a4741b2f6c2c754 (patch) | |
tree | e9073a542ca9bdc1dd1de118890d3badfd77ab01 | |
parent | 0f6ce75490f0b27998a3c490fa561c4762214530 (diff) | |
download | XMonadContrib-cf1e49ab7a4be924e2ba9e695a4741b2f6c2c754.tar.gz XMonadContrib-cf1e49ab7a4be924e2ba9e695a4741b2f6c2c754.tar.xz XMonadContrib-cf1e49ab7a4be924e2ba9e695a4741b2f6c2c754.zip |
Dzen.hs: resend doc update
darcs-hash:20071106211537-f7719-65230e7fc16e0b17b79c18bcee5284460ba36d6b.gz
-rw-r--r-- | XMonad/Util/Dzen.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/XMonad/Util/Dzen.hs b/XMonad/Util/Dzen.hs index 929dbc3..2a63942 100644 --- a/XMonad/Util/Dzen.hs +++ b/XMonad/Util/Dzen.hs @@ -53,13 +53,13 @@ dzenScreen sc str timeout = dzenWithArgs str ["-xs", screen] timeout toXineramaArg n = show ( ((fromIntegral n)+1)::Int ) -- | Flashes when a window requests your attention and you can't see it. For use with --- XMonadContrib.UrgencyHook. Usage: +-- XMonad.Hooks.UrgencyHook. Usage: -- > urgencyHook = dzenUrgencyHook (5 `seconds`) dzenUrgencyHook :: Int -> Window -> X () dzenUrgencyHook = dzenUrgencyHookWithArgs [] -- | Flashes when a window requests your attention and you can't see it. For use with --- XMonadContrib.UrgencyHook. Usage: +-- XMonad.Hooks.UrgencyHook. Usage: -- > urgencyHook = dzenUrgencyHookWithArgs ["-bg", "darkgreen"] (5 `seconds`) dzenUrgencyHookWithArgs :: [String] -> Int -> Window -> X () dzenUrgencyHookWithArgs args duration w = do |