From acea1a53e7e4ba475a08cab0d2aa2bc9192e85ee Mon Sep 17 00:00:00 2001 From: Don Stewart Date: Mon, 5 Nov 2007 05:07:41 +0100 Subject: add CONFIG with details of how to configure darcs-hash:20071105040741-cba2c-000fffb93c979c40e1684b5c618ca3e8540b20ad --- CONFIG | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 CONFIG (limited to 'CONFIG') diff --git a/CONFIG b/CONFIG new file mode 100644 index 0000000..6003637 --- /dev/null +++ b/CONFIG @@ -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. -- cgit v1.2.3