summaryrefslogtreecommitdiffhomepage
path: root/src/lib/Config.hs
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2018-12-22 02:50:31 +0000
committerjao <jao@gnu.org>2018-12-22 02:50:31 +0000
commit80c57d09cab1eaedc09b85d7c21e629e3a6a796f (patch)
tree8832d47a418a89be1977da05a4011f41d1c73bba /src/lib/Config.hs
parentecaa36aeb057cad86766b9ce537d0977e98f59e2 (diff)
downloadxmobar-config-80c57d09cab1eaedc09b85d7c21e629e3a6a796f.tar.gz
xmobar-config-80c57d09cab1eaedc09b85d7c21e629e3a6a796f.tar.bz2
trayer support and refactorings
Diffstat (limited to 'src/lib/Config.hs')
-rw-r--r--src/lib/Config.hs15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/lib/Config.hs b/src/lib/Config.hs
index 4b4f160..abdfb22 100644
--- a/src/lib/Config.hs
+++ b/src/lib/Config.hs
@@ -32,14 +32,15 @@ lightPalette = Palette { pNormal = "black"
}
darkPalette :: Palette
-darkPalette = Palette { pNormal = "black"
- , pLow = "#4d4d4d"
+darkPalette = Palette { pNormal = "grey60"
+ , pLow = "gray50"
, pHigh = "#a0522d"
- , pFont = "xft:NotoMono-9,xft:Inconsolata-11"
- , pBorder = "black"
- , pForeground = "grey50"
+ , pFont = "xft:Source Code Pro Medium-10"
+ -- , pFont = "xft:NotoMono-9,xft:Inconsolata-11"
+ , pBorder = "grey30"
+ , pForeground = "grey60"
, pBackground = "black"
- , pAlpha = 102
+ , pAlpha = 0
}
palette :: IO Palette
@@ -58,7 +59,7 @@ baseConfig p = defaultConfig {
, alpha = (pAlpha p)
, additionalFonts = []
, overrideRedirect = True
- , lowerOnStart = False
+ , lowerOnStart = True
, hideOnStart = False
, allDesktops = True
, persistent = True