blob: 8fe0aeb9cb0e359a68df74d738d07d82a711a3d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#!/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
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 &
# detach the player
disown
else
# exit MOC server
mocp -x
# 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 100 | xargs -d "\n" mocp -a
# start playing
mocp -p
fi
|