mirror of
https://github.com/ashish-yadav11/dwmblocks
synced 2024-11-17 09:26:13 +00:00
7 lines
126 B
Bash
7 lines
126 B
Bash
|
#!/bin/dash
|
||
|
case "$1" in
|
||
|
1) pamixer --toggle-mute ;;
|
||
|
2) exec pavucontrol-qt ;;
|
||
|
3) pamixer --set-volume 60 ;;
|
||
|
esac
|