diff options
Diffstat (limited to '.config')
| -rw-r--r-- | .config/xmonad/xmobarrc | 2 | ||||
| -rw-r--r-- | .config/xmonad/xmonad.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.config/xmonad/xmobarrc b/.config/xmonad/xmobarrc index cd9e62e..8ff0542 100644 --- a/.config/xmonad/xmobarrc +++ b/.config/xmonad/xmobarrc @@ -43,7 +43,7 @@ Config { -- Check for package updates every ~16 minutes , Run Com "pacpackages" [] "packages" 10000 - , Run Com "volume" [] "" 5 + , Run Com "volume" ["Volume: <fc=#02d310>%s</fc>"] "" 5 , Run Alsa "default" "Master" [] diff --git a/.config/xmonad/xmonad.hs b/.config/xmonad/xmonad.hs index f3c69e2..8eb46a1 100644 --- a/.config/xmonad/xmonad.hs +++ b/.config/xmonad/xmonad.hs @@ -33,7 +33,7 @@ import Graphics.X11.ExtraTypes.XF86 -- The preferred terminal program, which is used in a binding below and by -- certain contrib modules. -- -myTerminal = "st" +myTerminal = "$TERMINAL" -- Whether focus follows the mouse pointer. myFocusFollowsMouse :: Bool |