blob: ef898dbbc46730d939268bd41444e47808c0357c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env sh
# Description: Play random music from current directory. Identifies MP3, FLAC, WEBM, WMA.
# You may want to change the PLAYER.
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana
PLAYER=smplayer
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 &
disown
|