mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-08-08 07:51:52 -07:00
28 lines
694 B
Haskell
28 lines
694 B
Haskell
--------------------------------------------------------------------
|
|
-- |
|
|
-- 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 }
|
|
|