Added files

This commit is contained in:
Marcin Wozniak
2019-05-19 14:25:57 +02:00
parent 3f5bab6d62
commit 1942bca110
32 changed files with 8741 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