dotfiles/scripts/yt-search.sh

16 lines
227 B
Bash
Raw Permalink Normal View History

#!/usr/bin/env sh
search="$(rofi -dmenu)"
2019-12-07 12:22:55 +01:00
if [ -n "$search" ]; then
2019-12-07 12:22:55 +01:00
id="$(youtube-dl --get-id "ytsearch:$search")"
2019-12-07 12:22:55 +01:00
link="https://invidio.us/watch?v=$id"
2020-03-08 13:32:21 +01:00
$VIDEOPLAYER "$link" 1>&2
2019-12-07 12:22:55 +01:00
printf "%b\n" "$link"
fi