mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-04 18:00:20 +00:00
34 lines
843 B
Bash
Executable File
34 lines
843 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
MPVPIPE=/tmp/mpvqueue.playlist
|
|
|
|
notify="notify-send -i mpv -a mpv"
|
|
|
|
# if link is a youtube playlist, clean up url
|
|
if [[ ${1} =~ /^((?:https?:)?\/\/)?((?:www|m)\.)?((?:youtube\.com|youtu.be))(\/(?:[\w\-]+\?v=|embed\/|v\/)?)([\w\-]+)(\S+)?$ ]]; then
|
|
url="https://youtube.com/playlist?list=${1#*list=}"
|
|
else
|
|
url="$1"
|
|
fi
|
|
|
|
# See if MPV is already running
|
|
if [ -z "$(pidof mpv)" ]; then
|
|
# mpv is not running
|
|
# remove fifo
|
|
rm -f $MPVPIPE && mkfifo $MPVPIPE
|
|
|
|
# start mpv
|
|
/usr/bin/mpv --no-terminal --input-file="${MPVPIPE}" "$url" & disown
|
|
|
|
# Wait for mpv to be up before moving on to adding anything else to playlist
|
|
while [ -z "$(pidof mpv)" ]; do
|
|
sleep 1
|
|
done
|
|
$notify "Playing $url"
|
|
|
|
else
|
|
# mpv is running, so add stuff to playlist
|
|
$notify "Adding $url"
|
|
echo "loadfile \"$url\" append-play" >> "${MPVPIPE}"
|
|
fi
|