The yt script now accepts a --url option which will take a url as an option like yt --url youtube.com/watch?v=blar or echo youtube.com/watch?v=blar | yt --url It will also use rofi rather than fzf if not being run from a terminal or the --rofi flag is given I have updated the files that used to use open-youtube to reflect thismaster
parent
c619f884bd
commit
99736427be
5 changed files with 99 additions and 52 deletions
@ -1,24 +0,0 @@ |
||||
#!/bin/bash |
||||
|
||||
isxclient=$( readlink /dev/fd/2 | grep -q 'tty' && [[ -n $DISPLAY ]] ; echo $? ) |
||||
if [[ ! -t 2 || $isxclient == "0" ]]; then |
||||
DMENU="rofi -dmenu -p" |
||||
else |
||||
DMENU="fzf --prompt" |
||||
fi |
||||
|
||||
url="$1" |
||||
|
||||
if [ -z "$url" ]; then |
||||
url=$($DMENU 'URL') |
||||
fi |
||||
|
||||
code=$( ( youtube-dl "$url" -F; echo "bb Best of both") | sed -n '/format code/,$ p' | tail -n +2 | $DMENU "Quality " -m | awk '{print $1}') |
||||
|
||||
code="$(echo "$code" | tr '\n' '+' | sed 's/+$//')" |
||||
|
||||
case "$code" in |
||||
"bb") mpv "$url" --ytdl-format="bestvideo+bestaudio" ;; |
||||
*) mpv "$url" --ytdl-format="$code" |
||||
esac |
||||
|
Loading…
Reference in new issue