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/music.sh
2018-08-24 21:44:45 +03:00

27 lines
429 B
Bash
Executable File

#!/bin/bash
case $1 in
"toggle")
mpc toggle
;;
"prev")
mpc prev &
pkill -RTMIN+2 i3blocks
;;
"next")
mpc next &
pkill -RTMIN+2 i3blocks
;;
"lower")
mpc volume -5
notify-send -t 250 "VOL: $(mpc volume | awk '{match($2,"[0-9]*",a)}END{print a[0]}')"
pkill -RTMIN+2 i3blocks
;;
"raise")
mpc volume +5
notify-send -t 250 "VOL: $(mpc volume | awk '{match($2,"[0-9]*",a)}END{print a[0]}')"
pkill -RTMIN+2 i3blocks
;;
esac