You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
659 B
24 lines
659 B
5 years ago
|
#!/usr/bin/env sh
|
||
|
pidof svkbd-sxmo || svkbd-sxmo &
|
||
|
SEARCHTERMS="$(
|
||
|
echo "Search term" |
|
||
|
dmenu -p "Yt Search" -c -l 10 -fn Terminus-20
|
||
|
)"
|
||
|
pkill svkbd-sxmo
|
||
|
|
||
|
IDIOTRESULTS="$(idiotbox-cli $SEARCHTERMS)"
|
||
|
RESULT="$(
|
||
|
echo "$IDIOTRESULTS" |
|
||
|
grep -Ev '^(Channelid|Atom feed|Channel title|Published|Viewcount|Userid):' |
|
||
|
sed -E 's/^(URL|Duration):\s+/\t/g' |
|
||
|
tr -d '\n' |
|
||
|
sed 's/===/\n/g' |
|
||
|
gawk -F'\t' '{ print $3 " " $1 " " $2}' |
|
||
|
dmenu -c -l 10 -fn Terminus-20
|
||
|
)"
|
||
|
|
||
|
[[ "CLOSE_MENU" == "$RESULT" ]] && exit 0
|
||
|
|
||
|
URL=$(echo "$RESULT" | awk -F " " '{print $NF}')
|
||
5 years ago
|
st -e mpv --ytdl-format='[height<420]' $@ "$URL"
|