diff options
| author | Andrew <saintruler@gmail.com> | 2020-12-22 13:36:05 +0400 |
|---|---|---|
| committer | Andrew <saintruler@gmail.com> | 2020-12-22 13:36:05 +0400 |
| commit | 0bac11af6ff10ff4f68fa15417d6569ff5771b49 (patch) | |
| tree | e16d8370f1ee5a2f76a1cc0c12f21748f1efa245 /.config/xmonad | |
| parent | c366e931cc3dd58dc954cfe7f0bddce6c59cfc9b (diff) | |
Changed xmonad and xmobar config and removed emojis from volume script
Diffstat (limited to '.config/xmonad')
| -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 |