Some changes

This commit is contained in:
2025-02-04 21:02:12 -08:00
parent f40f9f5277
commit ee1321e857
6 changed files with 83 additions and 28 deletions

View File

@ -24,10 +24,12 @@ function notify_vol {
local icon
if [[ "$(pamixer --get-mute)" == 'true' ]]; then
icon='󰸈'
elif (( ${vol} > 50 )); then
elif (( ${vol} >= 50 )); then
icon='󰕾'
elif (( ${vol} >= 0 )); then
elif ((${vol} > 0)); then
icon='󰖀'
elif ((${vol} == 0)); then
icon='󰕿'
else
icon=''
fi