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-07-31 21:30:28 +03:00

20 lines
319 B
Bash
Executable File

#!/bin/bash
case $1 in
"raise")
pactl set-sink-volume 0 +5%
notify-send $(pamixer --get-volume)
pkill -RTMIN+1 i3blocks
;;
"lower")
pactl set-sink-volume 0 -5%
notify-send $(pamixer --get-volume)
pkill -RTMIN+1 i3blocks
;;
"toggle_mute")
pactl set-sink-mute 0 toggle
notify-send $(pamixer --get-mute)
;;
esac