summaryrefslogtreecommitdiffstats
path: root/.bin/download_music.sh
diff options
context:
space:
mode:
authorjdlugosz963 <jdlugosz963@gmail.com>2022-12-28 16:16:57 +0100
committerjdlugosz963 <jdlugosz963@gmail.com>2022-12-28 16:16:57 +0100
commit23a70dc3ece576344603c67ac219b524f7086bca (patch)
tree9703cd58012c7f69903627e6bb6577c7d0b844cb /.bin/download_music.sh
parentaaf735839cdd308dd2a4f89b6f85d482c970710e (diff)
downloaddotfiles-23a70dc3ece576344603c67ac219b524f7086bca.tar.gz
dotfiles-23a70dc3ece576344603c67ac219b524f7086bca.zip
Add custom scripts to bin folder
Diffstat (limited to '.bin/download_music.sh')
-rwxr-xr-x.bin/download_music.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/.bin/download_music.sh b/.bin/download_music.sh
new file mode 100755
index 0000000..e3a3601
--- /dev/null
+++ b/.bin/download_music.sh
@@ -0,0 +1,26 @@
1#!/bin/sh
2
3BOLD="\e[1";
4ENDCOLOR="\e[0m";
5Green="32";
6LightRed="31";
7
8if ! [ $1 ]; then
9 echo ""
10 echo -e $BOLD";"";"$LightRed"m Please provide music url!"$ENDCOLOR
11 echo ""
12 exit
13fi
14
15MUSIC_DIR="~/Documents/Music/%(artist)s/%(album)s/%(title)s-%(id)s.%(ext)s"
16if [ $2 ]; then
17 MUSIC_DIR="${a}/%(artist)s/%(album)s/%(title)s-%(id)s.%(ext)s"
18fi
19
20echo ""
21echo -e $BOLD";"";"$Green"m Music will download to ${MUSIC_DIR} directory!"$ENDCOLOR
22echo ""
23
24sleep 1
25
26yt-dlp -x --audio-format mp3 --embed-metadata -o $MUSIC_DIR $1