summaryrefslogtreecommitdiffstats
path: root/src/XMonad/Local/Config.hs
blob: ecca2e4d5153913f18b2571055ead0dbf09d68db (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
25
26
27
28
29
30
31
32
33
34
module XMonad.Local.Config (
      explorer
    , xpConfig
    , terminal
    , tabsOutlinerAppID
    , tabsOutlinerAppName
    , tabsOutlinerFloatRect
    ) where

import qualified XMonad.Prompt as P
import qualified XMonad.StackSet as W

explorer :: String
explorer = "caja"

terminal :: String
terminal = "mate-terminal"

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

tabsOutlinerAppID :: String
tabsOutlinerAppID = "eggkanocgddhmamlbiijnphhppkpkmkl"
tabsOutlinerAppName :: String
tabsOutlinerAppName = "crx_" ++ tabsOutlinerAppID 
tabsOutlinerFloatRect :: W.RationalRect
tabsOutlinerFloatRect = W.RationalRect (1/5) (1/11) (3/5) (7/9)