summaryrefslogtreecommitdiffstats
path: root/src/XMonad/Local/Config.hs
blob: fc6f0ac30c37804c227de6e4e6d4198a0313ff32 (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
35
{-# LANGUAGE UnicodeSyntax #-}

module XMonad.Local.Config where

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

explorer ∷ String
explorer = "caja"

terminal ∷ String
terminal = "st"

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
    }

browser ∷ String
browser = "google-chrome-stable"

vimBundlePath ∷ String
vimBundlePath = "~/.vim/bundle/vundle"

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