mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-05-19 11:30:22 -07:00
The intent is that: main = dzen xmonad should just work, and indeed it does now, for launching a cool status bar with minimal effort.
25 lines
625 B
Haskell
25 lines
625 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.Hooks.DynamicLog
|
|
|
|
donsMain :: IO ()
|
|
donsMain = dzen $ \conf -> xmonad $ conf
|
|
{ borderWidth = 2
|
|
, terminal = "term"
|
|
, normalBorderColor = "#cccccc"
|
|
, focusedBorderColor = "#cd8b00" }
|
|
|