mirror of
https://github.com/jarun/nnn.git
synced 2024-11-01 00:47:18 +00:00
32 lines
816 B
Bash
Executable file
32 lines
816 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# Description: Play random music from current directory. Identifies MP3, FLAC, WEBM, WMA.
|
|
# You may want to set GUIPLAYER.
|
|
#
|
|
# Shell: POSIX compliant
|
|
# Author: Arun Prakash Jana
|
|
|
|
#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 $NUMTRACKS | xargs -d "\n" "$PLAYER" > /dev/null 2>&1 &
|
|
|
|
# detach the player
|
|
sleep 1
|
|
else
|
|
# 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 $NUMTRACKS | xargs -d "\n" mocp -a
|
|
|
|
# start playing
|
|
mocp -p
|
|
fi
|