feat(global): add yt-dlp and aliases

This commit is contained in:
Infinidoge 2023-04-22 23:50:11 -04:00
parent 3ebaccc2ba
commit 6ff5bf4c11
2 changed files with 5 additions and 0 deletions

View file

@ -54,6 +54,7 @@
whois
xxHash
yq
yt-dlp
zip
];
}

View file

@ -78,5 +78,9 @@ in
path = "tr ':' '\n' <<< \"$PATH\"";
timestamp = "date +%s -d";
# yt-dlp
yt-m4a = ''yt-dlp -f "bestaudio[ext=m4a]" -o "%(title)s.%(ext)s"'';
yt-mp4 = ''yt-dlp -f "best[ext=mp4]" -o "%(title)s.%(ext)s"'';
};
}