aboutsummaryrefslogtreecommitdiff
path: root/scripts/audio
blob: 4b4bbc1897a58ee3af9de996cb925595135c35a3 (plain)
1
2
3
4
5
6
#!/bin/bash
if [ $(pulsemixer --get-mute) -eq 1 ]; then
  echo "MUTED"
else
  printf "%s%%" $(pulsemixer --get-volume | awk '{print $2 }')
fi