From 81b30d1beddc4db639571c54523f9a90701309c5 Mon Sep 17 00:00:00 2001 From: jasmine Date: Sun, 23 Feb 2025 17:52:45 +0800 Subject: [PATCH 1/2] feat: update borders --- src/xmonad.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xmonad.hs b/src/xmonad.hs index c007042..0cfbce5 100644 --- a/src/xmonad.hs +++ b/src/xmonad.hs @@ -38,8 +38,8 @@ myConfig = def myTerminal = "wezterm" myModMask = mod4Mask myBorderWidth = 3 -myNormalBorderColor = background -myFocusedBorderColor = foreground +myNormalBorderColor = "#282828" +myFocusedBorderColor = "#32302f" myWorkspaces = ["code", "chat", "web", "games", "misc"] myLauncher = "rofi -modi run,calc -show run" myScrot = "scrot -s '%Y%m%d_%H%M%S.png' -e 'mv $f ~/Pictures/scrots/'" From 1dc7c4b9ac1636a00d7d0fac64967656c099ee9a Mon Sep 17 00:00:00 2001 From: jasmine Date: Sun, 23 Feb 2025 18:02:29 +0800 Subject: [PATCH 2/2] chore: refactor --- src/xmobar.hs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/xmobar.hs b/src/xmobar.hs index ac51265..4a666fd 100644 --- a/src/xmobar.hs +++ b/src/xmobar.hs @@ -1,8 +1,6 @@ -import Xmobar - import XMonad.Hooks.StatusBar.PP (wrap) - import XMonadConfig.GruvboxMaterial +import Xmobar -- | Configures how things should be displayed on the bar config :: Config