1 2 3 4 5 6 7
#!/bin/sh vol="$(pamixer --get-volume-human)" [ "$vol" == "muted" ] && label="🔇" || label="🔊 $vol" echo "$label"