summaryrefslogtreecommitdiffstats
path: root/src/XMonad/Local/Config.hs
blob: 9d3506f96440d67e40e1cb640f80aaed179c14eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module XMonad.Local.Config (
      explorer
    , xpConfig
    , terminal
    ) where

import qualified XMonad.Prompt as P

explorer :: String
explorer = "caja"

terminal :: String
terminal = "mate-terminal"

xpConfig :: P.XPConfig
xpConfig = P.defaultXPConfig
    { P.fgColor = "#dfdfdf"
    , P.bgColor = "#3c3c3c"
    , P.fgHLight = "#ffffff"
    , P.bgHLight = "#3c3c3c"
    , P.font    = "-*-terminus-*-*-*-*-14-*-*-*-*-*-*-*"
    , P.height  = 24
    }