Xmonad/Config archive/Don's xmonad.hs

From HaskellWiki
< Xmonad‎ | Config archive
Revision as of 21:56, 6 November 2007 by Gwern (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Configuration files get much simpler in xmonad 0.5, as you just override those values you need to.

This is the ~/.xmonad/xmonad.hs file.

import XMonad
import XMonad.Core
import XMonad.Config
import XMonad.Hooks.DynamicLog

main = xmonad $ defaultConfig
    { borderWidth        = 2
    , defaultGaps        = [(18,0,0,0)]
    , terminal           = "term"
    , normalBorderColor  = "#cccccc"
    , focusedBorderColor = "#cd8b00"
    , logHook            = dynamicLogDzen }