[xmonad] Could not find module `Xmonad.Util.EZConfig':
Spencer Janssen
spencerjanssen at gmail.com
Thu Jan 15 15:22:52 EST 2009
On Thu, Jan 15, 2009 at 01:29:14PM -0600, Kent Frazier wrote:
> Running Arch linux.
>
> I've just installed and am trying to configure XMonad. I'm following the
> step-by-step guide to configuring xmonad from the xmonad web site.
>
> Here is my current xmonad.hs file:
>
> [code]
>
> import XMonad
> import XMonad.Hooks.DynamicLog
> import XMonad.Hooks.ManageDocks
> import XMonad.Util.Run(spawnPipe)
> import XMonad.Util.EZConfig(additionalKeys)
> import System.IO
>
> main = do
> xmproc <- spawnPipe "/usr/bin/xmobar /home/kent/.xmonad/xmobar"
> xmonad $ defaultConfig {
> manageHook = manageDocks <+> manageHook defaultConfig,
Missing a comma at the end of this line:
> layoutHook = avoidStruts $ layoutHook defaultConfig
> logHook = dynamicLogWithPP $ xmpbarPP {
> ppOutput = hPutStrLn xmproc
Missing a closing } and comma at the end of this line:
> ppTitle = xmobarColor "green" "" . shorten 50
> modMask = mod4Mask --Rebind Mod to the Windows Key
> } `additionalKeys`
> [((mod4Mask .|. shiftMask, xK_z),
Missing a comma here as well:
> spawn "xscreensaver-command -lock")
> ((controlMask, xK_Print), spawn "scrot -s"),
> ((0, xK_Print), spawn "scrot")
> ]
> [\code]
Cheers,
Spencer Janssen
More information about the xmonad
mailing list