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-06 03:07:39 +03:00

17 lines
151 B
Bash
Executable File

#!/bin/bash
case $1 in
"toggle")
mpc toggle
;;
"next")
mpc next &
pkill -RTMIN+2 i3blocks
;;
"prev")
mpc prev &
pkill -RTMIN+2 i3blocks
;;
esac