diff options
author | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-05-21 21:13:48 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-05-21 21:13:48 +0530 |
commit | 58816ab030ef78b855e0c01036da594968310cde (patch) | |
tree | 57de80e1eb30c9ad6bd2e0dc2e94a3285505bfa8 /.config/XMonad/lib/Defaults.hs | |
parent | fba63a0b136906b8d5636c987e56e1b468efeec4 (diff) |
Fixed Polybar workspaces not working through XMonad
Diffstat (limited to '.config/XMonad/lib/Defaults.hs')
-rw-r--r-- | .config/XMonad/lib/Defaults.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/XMonad/lib/Defaults.hs b/.config/XMonad/lib/Defaults.hs index 0d751d6..c528829 100644 --- a/.config/XMonad/lib/Defaults.hs +++ b/.config/XMonad/lib/Defaults.hs @@ -58,10 +58,10 @@ myExtraWorkspaces = [(xK_0, "十")] myWorkspaces = ["一", "二", "三", "四", "五", "六", "七", "八", "九"] ++ map snd myExtraWorkspaces -- screen gaps -sGap = 4 -wGap = 6 +sGap = 3 +wGap = 4 -myGap = spacingRaw True (Border sGap sGap sGap sGap) True (Border wGap wGap wGap wGap) True +myGap = spacingRaw True (Border sGap sGap sGap sGap) True (Border wGap wGap wGap wGap) True myTabTheme = def { fontName = myFont |