From fb0d5ab9a67f4480b771f1d5b51829a6bd6caf20 Mon Sep 17 00:00:00 2001 From: FollieHiyuki Date: Sun, 21 Feb 2021 17:40:18 +0300 Subject: [PATCH] ytmdl: add sample config --- deploy.sh | 1 + home/.config/ytmdl/config | 60 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 home/.config/ytmdl/config diff --git a/deploy.sh b/deploy.sh index f8862b6..a60460b 100755 --- a/deploy.sh +++ b/deploy.sh @@ -106,6 +106,7 @@ cp -rfv ./home/.config/translate-shell/ ~/.config/translate-shell/ cp -rfv ./home/.config/tridactyl/ ~/.config/tridactyl/ cp -rfv ./home/.config/vifm/ ~/.config/vifm/ cp -rfv ./home/.config/youtube-dl/ ~/.config/youtube-dl/ +cp -rfv ./home/.config/ytmdl/ ~/.config/ytmdl/ cp -rfv ./home/.config/zathura/ ~/.config/zathura/ cp -rfv ./home/.config/mimeapps.list ~/.config/mimeapps.list cp -rfv ./home/.config/pulsemixer.cfg ~/.config/pulsemixer.cfg diff --git a/home/.config/ytmdl/config b/home/.config/ytmdl/config new file mode 100644 index 0000000..e43bf60 --- /dev/null +++ b/home/.config/ytmdl/config @@ -0,0 +1,60 @@ +#*****************************************# +#*-------------config for ytmdl-----------# +# +#-----------------------------------------# +#------PLEASE DON'T LEAVE ANY BLANK LINES---# +#-----------------------------------------# +# +# To change defaults just remove the hash(#) +# from the beginning of the line. +# +#***************************************** +# The SONG_DIR is the directory where all the songs will be saved. +# In order to change it, simply remove the hash from beginning +# And change the path to your desired one. +# In case the path has spaces in in, include it in a " " +# Following is a simple folder path example +# +SONG_DIR = "/home/follie/Downloads/Music" +# +#************--------ADVANCED-------********* +# If you want to save the song in custom folders than those can be +# added to the name like the following example. +# The possible values are following +# +# Artist --> Song Artist +# Album --> Song Album Name +# Title --> Song Name +# Genre --> Song Genre +# TrackNumber --> Song Number in the album +# ReleaseDate --> Song Release date +# +# Following is an example of the format +#SONG_DIR = "/home/user/Music$Artist->Album->Title" +# +#*****************************************# +# The QUALITY is the quality of the song in kbps +# By default it is set to 320kbps +# In case you want to change it to something else, +# Uncomment the following line and change it +# +# Supported values are 320 and 192 +# +#QUALITY = "320" +# +#*****************************************# +# The METADATA_PROVIDERS value is a comma separated +# values that specifies wich API providers to use for getting +# the song metadata. Available values right now are: +# itunes, gaana, deezer, lastfm, musicbrainz, saavn. +# Please check the github page of ytmdl for more information. +# +METADATA_PROVIDERS = "itunes, gaana, deezer, lastfm, saavn, musicbrainz" +# +#*****************************************# +# The DEFAULT_FORMAT denotes what to use as default for downloading. +# Available values are: +# mp3, m4a, opus +# +#DEFAULT_FORMAT = "mp3" +#