Added files

This commit is contained in:
Marcin Wozniak
2019-05-25 13:54:12 +02:00
parent 846aafa28d
commit 2a4204324b
23 changed files with 4325 additions and 0 deletions

6
vol Executable file
View File

@ -0,0 +1,6 @@
print_volume() {
[ "$(pulsemixer --get-mute)" = "1" ] && printf "MUTE" && exit
vol=$(pulsemixer --get-volume | awk '{print $1}')
printf "%s%%\\n" "$vol"
}
print_volume