Detect if MOC is playing

This commit is contained in:
Arun Prakash Jana 2019-08-15 04:01:53 +05:30
parent 5c591422dc
commit 8fff4643f5
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 17 additions and 7 deletions

View File

@ -59,15 +59,25 @@ fi
if [ -z "$ret" ]; then
# mocp not running
mocp -S
# clear selection and play
mocp -c
mocp_add "$1"
mocp -p
else
# mocp running, just append
mocp_add "$1"
# mocp running, check if it's playing
state=$(mocp -i | grep "State:" | cut -d' ' -f2)
if [ $state = 'PLAY' ]; then
# add to playlist and exit
mocp_add "$1"
# uncomment the line below to show mocp interface after appending
# mocp
exit
fi
fi
# clear selection and play
mocp -c
mocp_add "$1"
mocp -p
# uncomment the line below to show mocp interface after appending
# mocp