summaryrefslogtreecommitdiff
path: root/random-music
blob: f06ee8c5c8cb4c58d062dfcf5d760dafa66f690c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

if [ -z "$1" ]; then
    echo "No song amount provided. Defaulting to 10."
    arg=10
else
    arg=$1
fi

find /mnt/music/ -type f -name "*.*" | shuf -n $arg | mpv --playlist=- --no-audio-display

exit 0