Browse Source

Randomize mocp

master
Arun Prakash Jana 4 years ago
parent
commit
da91228bba
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      plugins/boom

+ 4
- 2
plugins/boom View File

@@ -21,21 +21,23 @@ elif which mocp >/dev/null 2>&1; then
if [ -z "$ret" ]; then if [ -z "$ret" ]; then
# start MOC server # start MOC server
mocp -S mocp -S
mocp -o shuffle
else else
# mocp running, check if it's playing # mocp running, check if it's playing
state=$(mocp -i | grep "State:" | cut -d' ' -f2) state=$(mocp -i | grep "State:" | cut -d' ' -f2)
if [ "$state" = 'PLAY' ]; then if [ "$state" = 'PLAY' ]; then
# add up to 100 random audio files # add up to 100 random audio files
find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | shuf -n "$NUMTRACKS" | xargs -d "\n" mocp -a
find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | head -n "$NUMTRACKS" | xargs -d "\n" mocp -a
exit exit
fi fi
fi fi


# clear MOC playlist # clear MOC playlist
mocp -c mocp -c
mocp -o shuffle


# add up to 100 random audio files # add up to 100 random audio files
find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | shuf -n "$NUMTRACKS" | xargs -d "\n" mocp -a
find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | head -n "$NUMTRACKS" | xargs -d "\n" mocp -a


# start playing # start playing
mocp -p mocp -p


Loading…
Cancel
Save