diff --git a/.local/bin/statusbar/sb-volume b/.local/bin/statusbar/sb-volume index cbb5ff9..af4debf 100755 --- a/.local/bin/statusbar/sb-volume +++ b/.local/bin/statusbar/sb-volume @@ -19,10 +19,10 @@ vol="$(pamixer --get-volume)" if [ "$vol" -gt "70" ]; then icon="" -elif [ "$vol" -lt "30" ]; then +elif [ "$vol" -gt "30" ]; then icon="" else - icon="" + icon="" fi echo "$icon $vol%"