dotfiles-pub/linux/.config/awesome/scripts/cmus-wrapper.sh

11 lines
172 B
Bash
Raw Normal View History

2022-11-08 16:36:46 +00:00
#!/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