dotfiles-pub/linux/.config/awesome/scripts/cmus-wrapper.sh
2022-11-08 09:36:46 -07:00

10 lines
172 B
Bash
Executable file

#!/bin/sh
# this only exists to stop socket deadlocking (hopefully)
if ! pgrep -x cmus ; then
echo "cmus-remote: cmus is not running"
exit 1
else
cmus-remote -Q
fi