summaryrefslogtreecommitdiff
path: root/home/.selfconfigs/zsh/functions/yta
blob: 42cef33cb77bae92380e4db8f52ad6460aecafc9 (plain)
1
2
3
4
5
6
7
8
function yta()
{
    if [ $# == 0 ]; then
        echo usage: yta \[SEARCH TERM\]
    else
        mpv --ytdl-format=bestaudio ytdl://ytsearch:"$*"
    fi
}