diff options
author | Don Stewart <dons@galois.com> | 2007-11-05 05:07:41 +0100 |
---|---|---|
committer | Don Stewart <dons@galois.com> | 2007-11-05 05:07:41 +0100 |
commit | 2eabaedaab1c8719c12de23dc9279c1b33731d8e (patch) | |
tree | d19f88c58a6346791f2a6af3cc784a7640f00adf /CONFIG | |
parent | 6789f0a3cdd67baea49f3a003986201ef7a146c5 (diff) | |
download | xmonad-2eabaedaab1c8719c12de23dc9279c1b33731d8e.tar.gz xmonad-2eabaedaab1c8719c12de23dc9279c1b33731d8e.tar.xz xmonad-2eabaedaab1c8719c12de23dc9279c1b33731d8e.zip |
add CONFIG with details of how to configure
darcs-hash:20071105040741-cba2c-000fffb93c979c40e1684b5c618ca3e8540b20ad.gz
Diffstat (limited to 'CONFIG')
-rw-r--r-- | CONFIG | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -0,0 +1,27 @@ +xmonad is configure by creating and editing the file: + + ~/.xmonad/xmonad.hs + +which is a Haskell source file. Here is an example, + + -- + -- An example, simple ~/.xmonad/xmonad.hs file. + -- It overrides a few basic settings, reusing all the other defaults, + -- and also uses the DynamicLog extension. + -- + + import XMonad + import XMonad.Core + import XMonad.Config + + main = xmonad $ defaultConfig + { borderWidth = 2 + , normalBorderColor = "#cccccc" + , focusedBorderColor = "#cd8b00" } + + +You may typecheck this file, or develop it in ghci, as you see fit. + +To have xmonad pick up your defaults, try mod-q. xmonad will attempt to +compile this file, and run it. If it is unable to, the defaults are +used. |