blob: ef5ccefc0c2235df9fad62989b84f5ffed265cb8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 }
|