configurations and the like
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env zsh |
|
|
|
case "$1" in |
|
down) |
|
pavolume voldown --quiet 2 |
|
;; |
|
up) |
|
pavolume volup --quiet 2 |
|
;; |
|
mute) |
|
pavolume mutetoggle --quiet |
|
;; |
|
*) |
|
pavolume show |
|
;; |
|
esac
|
|
|