mirror of
https://gitlab.com/dbrw/ansible-setup.git
synced 2025-08-04 20:45:41 +07:00
17 lines
248 B
Bash
Executable File
17 lines
248 B
Bash
Executable File
#!/usr/bin/sh
|
|
|
|
case $1 in
|
|
"up")
|
|
pamixer -i 3
|
|
;;
|
|
"down")
|
|
pamixer -d 3
|
|
;;
|
|
"mute")
|
|
pamixer -t
|
|
;;
|
|
*)
|
|
pamixer --get-volume-human
|
|
esac
|
|
dunstify -a "Volume" -r 88878 -u low -t 1500 $(pamixer --get-volume-human)
|