From 9b6ffeef5d901db1779e1223a00b46c9a13f9ceb Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sat, 24 Aug 2019 22:35:04 +0530 Subject: Use MOC in plugin boom --- plugins/boom | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) (limited to 'plugins/boom') diff --git a/plugins/boom b/plugins/boom index ef898db..8fe0aeb 100755 --- a/plugins/boom +++ b/plugins/boom @@ -1,12 +1,32 @@ #!/usr/bin/env sh # Description: Play random music from current directory. Identifies MP3, FLAC, WEBM, WMA. -# You may want to change the PLAYER. +# You may want to set GUIPLAYER. # # Shell: POSIX compliant # Author: Arun Prakash Jana -PLAYER=smplayer +#GUIPLAYER=smplayer -find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.webm" -o -iname "*.wma" \) | sort -R | head -n 100 | xargs -d "\n" "$PLAYER" > /dev/null 2>&1 & -disown +if [ ! -z "$GUIPLAYER" ]; then + PLAYER="$GUIPLAYER" + find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.webm" -o -iname "*.wma" \) | sort -R | head -n 100 | xargs -d "\n" "$PLAYER" > /dev/null 2>&1 & + + # detach the player + disown +else + # exit MOC server + mocp -x + + # start MOC server + mocp -S + + # clear MOC playlist + mocp -c + + # add up to 100 random audio files + find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.webm" -o -iname "*.wma" \) | sort -R | head -n 100 | xargs -d "\n" mocp -a + + # start playing + mocp -p +fi -- cgit v1.2.3-70-g09d2