fixed mutes/pauses for long pressed rotations
[powermate.git] / scripts / volume-toggle
1 #!/bin/bash
2
3 export DISPLAY=:0
4 status=$(amixer get Master | tail -n1 | awk '{print $NF}')
5 status=$(echo "${status%]}")
6 status=$(echo "${status#[}")
7 if [ $status == "on" ]
8   then notify-send -i /usr/share/icons/powermate/volume-mute.png " "
9 elif [ $status == "off" ]
10   then notify-send -i /usr/share/icons/powermate/volume-on.png " "
11 fi
12 amixer set Master toggle