Trying to get dynamicLogDzen to work

Hi, I use xmonad darcs version on archlinux (taken from aur). I am new to xmonad and do not know any haskell. This is my xmonad.hs: import XMonad import XMonad.Hooks.DynamicLog main = xmonad $ defaultConfig{ logHook = dynamicLogDzen } I took this from the dynamicLog help page. Now I get this error: Not in scope: 'dynamicLogDzen' What am I doing wrong? Thanks! Nathan

On Fri, Sep 25, 2009 at 01:38:10PM +0200, Nathan Huesken wrote:
I took this from the dynamicLog help page.
Now I get this error:
Not in scope: 'dynamicLogDzen'
What am I doing wrong?
DynamicLog's interface has changed slightly since the last release, so the docs you were looking at (for the released version) do not match the code in darcs. You should be able to do the same thing now with logHook = dynamicLogWithPP dzenPP -Brent
participants (2)
-
Brent Yorgey
-
Nathan Huesken