This repository has been archived on 2020-09-29. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dotfiles_old/.scripts/audio.sh
2018-08-26 12:57:57 +03:00

20 lines
325 B
Bash
Executable File

#!/bin/bash
case $1 in
"raise")
pamixer -i 2
notify-send -t 250 "VOL: $(pamixer --get-volume)"
pkill -RTMIN+1 i3blocks
;;
"lower")
pamixer -d 2
notify-send -t 250 "VOL: $(pamixer --get-volume)"
pkill -RTMIN+1 i3blocks
;;
"toggle_mute")
pamixer --toggle-mute
notify-send -t 250 "MUTE: $(pamixer --get-mute)"
;;
esac