diff options
| author | la-ninpre <leobrekalini@gmail.com> | 2022-06-21 15:11:35 +0300 |
|---|---|---|
| committer | la-ninpre <leobrekalini@gmail.com> | 2022-06-21 15:11:35 +0300 |
| commit | b26b12dda75ef36981e0d0431650cfca6d638dda (patch) | |
| tree | 964333cb926a12d0f05fd69fe5269771f1b4d45d | |
| parent | 8ae378b9126b806d0dd6c618f760d5a351d5f3f4 (diff) | |
| download | xmonad-config-b26b12dda75ef36981e0d0431650cfca6d638dda.tar.gz xmonad-config-b26b12dda75ef36981e0d0431650cfca6d638dda.zip | |
remove borders in tab theme and change border colors
| -rw-r--r-- | xmonad.hs | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 |
