summaryrefslogtreecommitdiff
path: root/config/X/xmonad/autostart
diff options
context:
space:
mode:
Diffstat (limited to 'config/X/xmonad/autostart')
-rwxr-xr-xconfig/X/xmonad/autostart/fehbg.sh2
-rwxr-xr-xconfig/X/xmonad/autostart/getvolume.sh8
2 files changed, 5 insertions, 5 deletions
diff --git a/config/X/xmonad/autostart/fehbg.sh b/config/X/xmonad/autostart/fehbg.sh
index 4b65f3a..f1ef545 100755
--- a/config/X/xmonad/autostart/fehbg.sh
+++ b/config/X/xmonad/autostart/fehbg.sh
@@ -1,2 +1,2 @@
#!/bin/sh
-feh --no-fehbg --bg-scale "$HOME/pictures/Wallpapers/nord/nord_background3.jpg"
+feh --no-fehbg --bg-scale "$HOME/pics/wallpaper"
diff --git a/config/X/xmonad/autostart/getvolume.sh b/config/X/xmonad/autostart/getvolume.sh
index ee2509e..1683db8 100755
--- a/config/X/xmonad/autostart/getvolume.sh
+++ b/config/X/xmonad/autostart/getvolume.sh
@@ -5,16 +5,16 @@ do
muted=$(pamixer --get-mute)
if [[ "$muted" == "true" ]]
then
- icon="<fn=1></fn>"
+ icon=""
elif [ $string -gt 49 ]
then
- icon="<fn=1></fn>"
+ icon=""
elif [ $string -eq 0 ]
then
- icon="<fn=1></fn>"
+ icon=""
elif [ $string -lt 50 ]
then
- icon="<fn=1></fn>"
+ icon=""
fi
echo "${string}% $icon" > $HOME/.config/xmobar/scripts/volume-pipe
done