From e72dbec95adeaf0237aed863de6ced8693d0d715 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sun, 5 Jan 2020 22:43:23 +0530 Subject: [PATCH] Update boom --- plugins/boom | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/plugins/boom b/plugins/boom index 0ca9ab7..460b9dd 100755 --- a/plugins/boom +++ b/plugins/boom @@ -12,11 +12,11 @@ NUMTRACKS=100 if [ ! -z "$GUIPLAYER" ]; then PLAYER="$GUIPLAYER" - find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | sort -R | head -n $NUMTRACKS | xargs -d "\n" "$PLAYER" > /dev/null 2>&1 & + find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | shuf | head -n $NUMTRACKS | xargs -d "\n" "$PLAYER" > /dev/null 2>&1 & # detach the player sleep 1 -else +elif which mocp >/dev/null 2>&1; then # start MOC server mocp -S @@ -24,8 +24,11 @@ else mocp -c # add up to 100 random audio files - find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | sort -R | head -n $NUMTRACKS | xargs -d "\n" mocp -a + find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | shuf | head -n $NUMTRACKS | xargs -d "\n" mocp -a # start playing mocp -p +else + printf "moc missing" + read -r _ fi