From 7f5ccd20efbe4e7a4bfc424e13e6f2db70c10b04 Mon Sep 17 00:00:00 2001 From: Krzysztof Rudnicki Date: Fri, 15 Nov 2024 13:14:32 +0100 Subject: [PATCH] fix: lack of volume no longer shows red color --- i3blocks/volume.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/i3blocks/volume.sh b/i3blocks/volume.sh index 8397bb4..532c8cd 100755 --- a/i3blocks/volume.sh +++ b/i3blocks/volume.sh @@ -7,7 +7,6 @@ mute=$(pactl get-sink-mute @DEFAULT_SINK@ | awk '{print $2}') # Determine icon and color based on mute status if [ "$mute" = "yes" ]; then icon="🔇" # Muted - color="#FF5555" # Red else icon="🔊" # Volume icon color="#50FA7B" # Green