
Thank you! It seems to be working now.
On Thu, Jan 15, 2009 at 14:22, Spencer Janssen
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 _______________________________________________ xmonad mailing list xmonad@haskell.org http://www.haskell.org/mailman/listinfo/xmonad