From 2890c82be9d073cb98e52f877d8a8f2c74982f18 Mon Sep 17 00:00:00 2001 From: Luna Komorebi Date: Fri, 21 Apr 2023 20:29:28 +0200 Subject: [PATCH] Add ytdlp alias to execute yt-dlp with the URL copied to the clipboard --- .zsh/aliases.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zsh/aliases.zsh b/.zsh/aliases.zsh index 5d00395..9edfc8b 100644 --- a/.zsh/aliases.zsh +++ b/.zsh/aliases.zsh @@ -8,7 +8,6 @@ alias \ rm='rm -iv' \ mv='mv -iv' \ mkd="mkdir -pv" \ - ytv="youtube-dl -f bestvideo" \ smpv="mpv --profile=svp --script-opts=socketPath=/tmp/mpvsocket " \ vim="nvim" \ swap-ytmpv-profiles="sed -i 's/mpv-yt/mpv-yt-inactive/g' ~/.config/mpv/mpv.conf && sed -i 's/mpv-yt-inactive-inactive/mpv-yt/g' ~/.config/mpv/mpv.conf; grep -1 mpv-yt ~/.config/mpv/mpv.conf" \ @@ -26,3 +25,4 @@ alias \ sudo='doas' alias history='fc -l 0' +alias ytdlp='yt-dlp `xclip -o`'