소스 검색

Detect if MOC is playing

master
Arun Prakash Jana 5 년 전
부모
커밋
8fff4643f5
No known key found for this signature in database GPG 키 ID: A75979F35C080412
1개의 변경된 파일17개의 추가작업 그리고 7개의 파일을 삭제
  1. +17
    -7
      plugins/mocplay

+ 17
- 7
plugins/mocplay 파일 보기

@@ -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

불러오는 중...
취소
저장