diff --git a/.config/xmobar/xmobarrc.hs b/.config/xmobar/xmobarrc.hs
index 71749a9..fb3633d 100644
--- a/.config/xmobar/xmobarrc.hs
+++ b/.config/xmobar/xmobarrc.hs
@@ -3,7 +3,7 @@ Config {
-- appearance
font = "xft:Fira Code:size=12:antialias=true:hinting=true"
, bgColor = "#121e32"
- , fgColor = "#9da5ae"
+ , fgColor = "#dfdfef"
, position = Top
, border = BottomB
, borderColor = "#121e32"
@@ -12,8 +12,8 @@ Config {
-- layout
, sepChar = "%" -- delineator between plugin names and straight text
, alignSep = "}{" -- separator between left-right alignment
- , template = " %UnsafeStdinReader% | %cpu% %memory% %dynnetwork% } \
- \{ %date% | %YPAD% | %battery% | %updates% %trayerpad%"
+ , template = " %UnsafeStdinReader% | %cpu% %memory% %dynnetwork% } \
+ \{ %date% | %YPAD% | %battery% | %updates% %trayerpad%"
}
-- general behavior
diff --git a/.xmonad/xmonad.hs b/.xmonad/xmonad.hs
index 502e4d1..a653b8b 100644
--- a/.xmonad/xmonad.hs
+++ b/.xmonad/xmonad.hs
@@ -72,7 +72,7 @@ import XMonad.Util.Run (runProcessWithInput, safeSpawn, spawnPipe)
import XMonad.Util.SpawnOnce
--THEME
--- #e8e8e8 (120,120,120)
+-- #dfdfef (120,120,120)
-- #9da5ae (157,165,174)
-- #6b788b (107,120,139)
-- #5c6776 (92,103,118)
@@ -173,9 +173,6 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
-- launch my file manager
, ((modm, xK_l ), spawn myFileManager)
- -- launch my file manager
- , ((modm .|. shiftMask, xK_l ), spawn "/home/solomon/.scripts/samedir")
-
-- close focused window
, ((modm .|. shiftMask, xK_j ), kill)
@@ -397,7 +394,7 @@ myTabTheme = def { fontName = myFont
, activeBorderColor = "#6b788b"
, inactiveBorderColor = "#121e32"
, activeTextColor = "#121e32"
- , inactiveTextColor = "#e9e9e9"
+ , inactiveTextColor = "#dfdfef"
}
-- Theme for showWName which prints current workspace when you change workspaces.
@@ -406,7 +403,7 @@ myShowWNameTheme = def
{ swn_font = myFont
, swn_fade = 1.0
, swn_bgcolor = "#121e32"
- , swn_color = "#e9e9e9"
+ , swn_color = "#dfdfef"
}