diff options
author | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-05-21 03:04:10 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-05-21 03:04:10 +0530 |
commit | adb06a286531abbf556432699832a9198b99e4e9 (patch) | |
tree | a39e6b4147e8b0b66c5bcb0c0497ad809fef858f /.config/XMonad/lib/Defaults.hs | |
parent | 4e65de6ab0c7a0ea5026de1a05edd2215a8ccdeb (diff) |
Updated keybindings for screen gaps
Diffstat (limited to '.config/XMonad/lib/Defaults.hs')
-rw-r--r-- | .config/XMonad/lib/Defaults.hs | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/.config/XMonad/lib/Defaults.hs b/.config/XMonad/lib/Defaults.hs index 34806e8..09b6c4b 100644 --- a/.config/XMonad/lib/Defaults.hs +++ b/.config/XMonad/lib/Defaults.hs @@ -52,7 +52,7 @@ myTextEditor = "emacs" myTextEditor' = "nvim" -- workspaces -myExtraWorkspaces = [(xK_0, "十")] -- , (xK_comma, " 十一 "), (xK_period, " 十二 "), (xK_slash, " 十三 ")] +myExtraWorkspaces = [(xK_0, "十")] myWorkspaces = ["一", "二", "三", "四", "五", "六", "七", "八", "九"] ++ map snd myExtraWorkspaces -- screen gaps @@ -60,7 +60,6 @@ sGap = 4 wGap = 6 myGap = spacingRaw True (Border sGap sGap sGap sGap) True (Border wGap wGap wGap wGap) True -myGap' = spacingRaw False (Border sGap sGap sGap sGap) True (Border wGap wGap wGap wGap) True myTabTheme = def { fontName = myFont @@ -83,15 +82,12 @@ myGSColorizer = colorRangeFromClassName (0xff,0xff,0xff) -- active fg myGSConfig colorizer = (buildDefaultGSConfig myGSColorizer) - { gs_cellheight = 36 - , gs_cellwidth = 180 - , gs_cellpadding = 6 - , gs_originFractX = 0.5 - , gs_originFractY = 0.5 - , gs_font = myFont - } + { gs_cellheight = 36 + , gs_cellwidth = 180 + , gs_cellpadding = 6 + , gs_originFractX = 0.5 + , gs_originFractY = 0.5 + , gs_font = myFont + } myGridSelect = myGSConfig myGSColorizer - --- myBorder = "#120F23" --- myBorder' = "#C44CF2" |