blob: 692fe4da595bfe6ba4b5e89545201e450c8b07c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env bash
ARG=${1:-$BLOCK_BUTTON}
case $ARG in
1) pamixer -t && sigdwmblocks 4;;
esac
VOL=$(pamixer --get-volume)
[ "$(pamixer --get-mute)" == "true" ] && echo -ne "\x0c\ufa80${VOL}\x0b" || echo -ne "\ufa7d${VOL}"
|