mirror of
https://github.com/cooperhammond/irs.git
synced 2025-07-02 15:08:14 +00:00
27 lines
673 B
Python
27 lines
673 B
Python
from os.path import expanduser
|
|
|
|
CONFIG = dict(
|
|
|
|
# To autostart rhythmbox with a new song:
|
|
# default_flags = '-c rhythmbox %(loc)s',
|
|
# To make choosing of links default:
|
|
# default_flags = '-l',
|
|
# To place all playlist songs into one folder:
|
|
# default_flags = '-of',
|
|
default_flags = '',
|
|
|
|
|
|
# These are necessary to download Spotify playlists
|
|
client_id = '',
|
|
client_secret = '',
|
|
|
|
# For a custom directory. Note that `~` will not work as a shortcut.
|
|
directory = str(expanduser("~")) + "/Music",
|
|
|
|
# If you want numbered file names
|
|
numbered_file_names = True,
|
|
|
|
# Downloaded file names
|
|
download_file_names = False,
|
|
)
|