aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--XMonad/Config/Dons.hs27
1 files changed, 27 insertions, 0 deletions
diff --git a/XMonad/Config/Dons.hs b/XMonad/Config/Dons.hs
new file mode 100644
index 0000000..ef5ccef
--- /dev/null
+++ b/XMonad/Config/Dons.hs
@@ -0,0 +1,27 @@
+--------------------------------------------------------------------
+-- |
+-- Module : XMonad.Config.Dons
+-- Copyright : (c) Galois, Inc. 2007
+-- License : BSD3
+--
+-- Maintainer: Don Stewart <dons@galois.com>
+--
+-- An example, simple configuration file.
+--
+--------------------------------------------------------------------
+
+module XMonad.Config.Dons where
+
+import XMonad
+import XMonad.Config
+import XMonad.Hooks.DynamicLog
+
+config :: XConfig
+config = defaultConfig
+ { borderWidth = 2
+ , defaultGaps = [(18,0,0,0)]
+ , terminal = "term"
+ , normalBorderColor = "#cccccc"
+ , focusedBorderColor = "#cd8b00"
+ , logHook = dynamicLogDzen }
+