aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--xmonad.hs10
1 files changed, 5 insertions, 5 deletions
diff --git a/xmonad.hs b/xmonad.hs
index c9a8919..e5a9402 100644
--- a/xmonad.hs
+++ b/xmonad.hs
@@ -114,13 +114,13 @@ myTabTheme = def
{ fontName = head myFonts
, activeTextColor = col_fg_alt def
, activeColor = col_bg_alt def
- , activeBorderWidth = myBorderWidth
+ , activeBorderWidth = 0
, inactiveTextColor = col_fg def
, inactiveColor = col_bg def
- , inactiveBorderWidth = myBorderWidth
+ , inactiveBorderWidth = 0
, urgentTextColor = col_bg_alt def
, urgentColor = col_fg_alt def
- , urgentBorderWidth = myBorderWidth
+ , urgentBorderWidth = 0
}
myLayout = windowNavigation
@@ -151,8 +151,8 @@ myConfig = def
, workspaces = myWorkspaces
, borderWidth = myBorderWidth
, keys = const M.empty -- discard default keybindings
- , normalBorderColor = col_bg def
- , focusedBorderColor = col_bg_alt def
+ , normalBorderColor = col_bg_alt def
+ , focusedBorderColor = col_fg_alt def
, startupHook = return () >> checkKeymap myConfig myKeys
} `additionalKeysP` myKeys