nnn/plugins/boom

32 lines
815 B
Plaintext
Raw Normal View History

#!/usr/bin/env sh
# Description: Play random music from current directory. Identifies MP3, FLAC, WEBM, WMA.
2019-08-24 17:05:04 +00:00
# You may want to set GUIPLAYER.
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana
2019-08-24 17:05:04 +00:00
#GUIPLAYER=smplayer
2019-08-25 00:46:31 +00:00
NUMTRACKS=100
2019-08-24 17:05:04 +00:00
if [ ! -z "$GUIPLAYER" ]; then
PLAYER="$GUIPLAYER"
2019-08-25 00:46:31 +00:00
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 &
2019-08-24 17:05:04 +00:00
# detach the player
disown
else
# start MOC server
mocp -S
# clear MOC playlist
mocp -c
# add up to 100 random audio files
2019-08-25 00:46:31 +00:00
find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.webm" -o -iname "*.wma" \) | sort -R | head -n $NUMTRACKS | xargs -d "\n" mocp -a
2019-08-24 17:05:04 +00:00
# start playing
mocp -p
fi