diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-08-25 06:16:31 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-08-25 06:17:05 +0530 |
commit | 86594a747fc1794fa517e9ef3f31b54612581a90 (patch) | |
tree | 84e877a1047fd82504d30c7ae12c8cc5860e68b2 /plugins/boom | |
parent | 2c909993815f33be1796d5f2bc6d3c65a5404fe2 (diff) | |
download | nnn-86594a747fc1794fa517e9ef3f31b54612581a90.tar.gz |
Fix plugin boom, make customizable
Diffstat (limited to 'plugins/boom')
-rwxr-xr-x | plugins/boom | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/plugins/boom b/plugins/boom index 8fe0aeb..47036e0 100755 --- a/plugins/boom +++ b/plugins/boom @@ -8,16 +8,15 @@ #GUIPLAYER=smplayer +NUMTRACKS=100 + 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 & + find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.webm" -o -iname "*.wma" \) | sort -R | head -n $NUMTRACKS | xargs -d "\n" "$PLAYER" > /dev/null 2>&1 & # detach the player disown else - # exit MOC server - mocp -x - # start MOC server mocp -S @@ -25,7 +24,7 @@ else 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 + find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.webm" -o -iname "*.wma" \) | sort -R | head -n $NUMTRACKS | xargs -d "\n" mocp -a # start playing mocp -p |