blob: 7d539aa62ef59708c12fef62049d3f5f022a22ad (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
if [ $# -eq 0 ]; then
# fzf has --read0, maybe useful
find "$XDG_MUSIC_DIR" | fzf -m --print0 | xargs -0 mpv --shuffle --loop-playlist=inf --video=no
elif [ $# -eq 1 ]; then
mpv --loop-file=inf --video=no "$1"
else
mpv --shuffle --loop-playlist=inf --video=no "$@"
fi
|