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

8 lines
150 B
Bash
Executable File

#!/bin/sh
[ "$(pulsemixer --get-mute)" = "1" ] && printf "M\\n" && exit
vol=$(pulsemixer --get-volume | awk '{print $1}')
printf "%s %%\\n" "$vol"