1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-03-18 18:07:45 +01:00

8 lines
150 B
Plaintext
Raw Normal View History

2019-09-07 17:42:18 +02:00
#!/bin/sh
2020-03-28 23:45:20 +01:00
[ "$(pulsemixer --get-mute)" = "1" ] && printf "M\\n" && exit
2019-09-07 17:42:18 +02:00
vol=$(pulsemixer --get-volume | awk '{print $1}')
2020-03-28 23:45:20 +01:00
printf "%s %%\\n" "$vol"