Browse Source

Scripts: Play video from clipboard

master
Riyyi 5 months ago
parent
commit
5bc947db3d
  1. 12
      .local/bin/play

12
.local/bin/play

@ -1,6 +1,6 @@
#!/bin/sh
# Depends: GNU getopt, mpv, socat, streamlink
# Depends: GNU getopt, mpv, socat, streamlink, xclip
SOCK="/tmp/umpv-fifo"
@ -256,7 +256,11 @@ elif [ $shuffleOption -eq 1 ]; then
elif [ $queueOption -eq 1 ]; then
queue "$*"
else
for url in "$@"; do
play "$url"
done
if [ "$*" = "" ]; then
play "$(xclip -o)"
else
for url in "$@"; do
play "$url"
done
fi
fi

Loading…
Cancel
Save