From 043ce9c05e69b23d3ea37a3e3ab72cde5e660385 Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 21 Nov 2021 14:36:10 +0000 Subject: [PATCH] Fix icons for volume --- .local/bin/statusbar/sb-volume | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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%"