32 lines
827 B
Text
32 lines
827 B
Text
|
#!/bin/sh
|
||
|
|
||
|
clip="$(xsel -b -o)"
|
||
|
urls="$(echo $clip | grep -o 'https\?://[a-zA-Z0-9~#%&_+=,.?/-]\+')"
|
||
|
opts="qr
|
||
|
audio search"
|
||
|
if [ -n "$urls" ]; then
|
||
|
opts="$(printf '%s\ndownload\nplay' "$opts")"
|
||
|
fi
|
||
|
|
||
|
#if [ -z "$urls" ]; then
|
||
|
#echo "Nope : $clip"
|
||
|
choice="$(printf "%s" "$opts" | dmenu -p "$(printf "%s" "$clip" | cut -c 1-48)")"
|
||
|
case "$choice" in
|
||
|
"qr")
|
||
|
printf "%s" "$clip" | qrencode -o - | feh -. -Z --geometry 400x400 -
|
||
|
;;
|
||
|
"download")
|
||
|
cd ~/mus || exit
|
||
|
youtube-dl -x --audio-format mp3 --no-playlist -o "%(title)s.%(ext)s" "$clip"
|
||
|
;;
|
||
|
"play")
|
||
|
mpv --ytdl-format='bestvideo[height<=?1080]+bestaudio/best' "$clip"
|
||
|
;;
|
||
|
"audio search")
|
||
|
st -e mpv --ytdl-format=bestaudio ytdl://ytsearch:"$clip"
|
||
|
;;
|
||
|
*)
|
||
|
printf "Nope\n"
|
||
|
;;
|
||
|
esac
|