15 lines
232 B
Bash
Executable file
15 lines
232 B
Bash
Executable file
#!/bin/bash
|
|
|
|
operation="${1}"
|
|
|
|
case "$operation" in
|
|
up)
|
|
amixer -D pulse sset Master 5%+
|
|
;;&
|
|
down)
|
|
amixer -D pulse sset Master 5%-
|
|
;;&
|
|
up|down)
|
|
paplay "$HOME/.config/i3/assets/sounds/volume.ogg"
|
|
;;
|
|
esac
|