aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/boom
blob: 5debfad7f247f2d9b3dda04256d59f7d7eb2698b (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env sh

# Description: Play random music from current directory. Identifies MP3, FLAC, M4A, WEBM, WMA.
#              You may want to set GUIPLAYER.
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana

GUIPLAYER="${GUIPLAYER}"
NUMTRACKS="${NUMTRACKS:-100}"

if [ ! -z "$GUIPLAYER" ]; then
    find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | shuf -n "$NUMTRACKS" | xargs -d "\n" "$GUIPLAYER" > /dev/null 2>&1 &

    # detach the player
    sleep 1
elif which mocp >/dev/null 2>&1; then
    cmd=$(pgrep -x mocp 2>/dev/null)
    ret=$cmd

    if [ -z "$ret" ]; then
        # start MOC server
        mocp -S
        mocp -o shuffle
    else
        # mocp running, check if it's playing
        state=$(mocp -i | grep "State:" | cut -d' ' -f2)
        if [ "$state" = 'PLAY' ]; then
            # add up to 100 random audio files
            find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | head -n "$NUMTRACKS" | xargs -d "\n" mocp -a
            exit
        fi
    fi

    # clear MOC playlist
    mocp -c
    mocp -o shuffle

    # add up to 100 random audio files
    find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | head -n "$NUMTRACKS" | xargs -d "\n" mocp -a

    # start playing
    mocp -p
else
    printf "moc missing"
    read -r _
fi