From 40c7430ca779c0cb89ae34a142e94633d9ee56a2 Mon Sep 17 00:00:00 2001 From: David JULIEN Date: Mon, 7 Nov 2022 19:12:35 +0100 Subject: [PATCH] [status] fix: sb-volume icons --- .local/bin/statusbar/sb-volume | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.local/bin/statusbar/sb-volume b/.local/bin/statusbar/sb-volume index 15c5155..d7868ea 100755 --- a/.local/bin/statusbar/sb-volume +++ b/.local/bin/statusbar/sb-volume @@ -13,16 +13,15 @@ vol="$(pulsemixer --get-volume | awk -F " " '{ printf "%d", $1 }')" if [ "1" = $(pulsemixer --get-mute) ]; then - icon="" + icon="婢" else if [ "$vol" -gt "70" ]; then - icon="" + icon="墳" elif [ "$vol" -lt "30" ]; then - icon="" + icon="奄" else - icon="" + icon="奔" fi fi printf " %s %3d%% " $icon $vol -