- #!/bin/sh
- mute=$(pactl get-sink-mute @DEFAULT_SINK@)
- if [ "$mute" = "Mute: yes" ]; then
- dunstify -i audio-volume-muted -a "$1" -h string:x-dunst-stack-tag:PULSE_MUTE "Pulseaudio" "Muted"
- else
- dunstify -i audio-ready -a "$1" -h string:x-dunst-stack-tag:PULSE_MUTE "Pulseaudio" "Unmuted"
- fi
- pw-play /usr/share/sounds/ITGC/notify.flac
|