Added the ytdlp and spotifydl

This commit is contained in:
Marcin Woźniak 2023-08-28 10:10:05 +02:00
parent a950db00cc
commit dc07a3814f
Signed by: y0rune
GPG Key ID: F204C385F57EB348

View File

@ -147,6 +147,16 @@ function install_awscli() {
pip3 install awscli --pre --user --force --quiet pip3 install awscli --pre --user --force --quiet
} }
function install_ytdlp() {
# Install yt-dlp
pip3 install yt-dlp --pre --user --force --quiet
}
function install_spotifydl() {
# Install spotify_dl
pip3 install spotify_dl --pre --user --force --quiet
}
function update() { function update() {
if [ -d $CONFIG/fzf ]; then if [ -d $CONFIG/fzf ]; then
FOLDER="$CONFIG/fzf" FOLDER="$CONFIG/fzf"
@ -207,6 +217,8 @@ function main() {
command_start install_black command_start install_black
command_start install_ansible command_start install_ansible
command_start install_meraki_ansible command_start install_meraki_ansible
command_start install_ytdlp
command_start install_spotifydl
command_start update command_start update
} }