blob: fa9548c868c7b2b6cebeb1bcb6513f826be7a4c6 (
plain) (
blame)
1
2
3
4
5
6
|
# Listen to a song on You Tube
listen-to-yt() {
if [[ -z "$1" ]]; then
echo "Enter a search string!";
else mpv "$(yt-dlp --default-search 'ytsearch1:' \"$1\" --get-url | tail -1)"; fi
}
|