for vol module it shows when is muted

This commit is contained in:
GabubuAvailable 2022-04-20 00:11:51 +03:00
parent a8f980392d
commit ba80e37475

View File

@ -23,11 +23,11 @@ module_user() {
}
module_vol_pa() {
export bar="${bar}${1}$(echo "`pamixer --get-volume`%")${2}"
export bar="${bar}${1}$(if pamixer --sink 0 --get-mute | grep -q 'false'; then echo "`pamixer --sink 0 --get-volume`%"; else echo "OFF"; fi)${2}"
}
module_vol_alsa() {
export bar="${bar}${1}$(echo "`amixer sget Master | tail -n1 | sed -r "s/.*\[(.*)%\].*/\1/"`%")${2}" #Thanks speedie for the command
export bar="${bar}${1}$(if amixer sget Master | grep -q 'on'; then echo "`amixer sget Master | tail -n1 | sed -r "s/.*\[(.*)%\].*/\1/"`%"; else echo "OFF"; fi)${2}" #Thanks speedie for the command
}
module_mic_pa() {