fix: lack of volume no longer shows red color

This commit is contained in:
Krzysztof Rudnicki 2024-11-15 13:14:32 +01:00
parent 42f582a6d3
commit 7f5ccd20ef

View File

@ -7,7 +7,6 @@ mute=$(pactl get-sink-mute @DEFAULT_SINK@ | awk '{print $2}')
# Determine icon and color based on mute status # Determine icon and color based on mute status
if [ "$mute" = "yes" ]; then if [ "$mute" = "yes" ]; then
icon="🔇" # Muted icon="🔇" # Muted
color="#FF5555" # Red
else else
icon="🔊" # Volume icon icon="🔊" # Volume icon
color="#50FA7B" # Green color="#50FA7B" # Green