diff options
Diffstat (limited to 'spotifyd/spotifyd.conf')
-rw-r--r-- | spotifyd/spotifyd.conf | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/spotifyd/spotifyd.conf b/spotifyd/spotifyd.conf new file mode 100644 index 0000000..82c0220 --- /dev/null +++ b/spotifyd/spotifyd.conf @@ -0,0 +1,43 @@ +# Spotifyd configuration file +# You have to set username and password! +# For complete documentation see: https://github.com/Spotifyd/spotifyd +################################################################################## +[global] +# Your Spotify account name. +#username = username + +# Your Spotify account password. +#password = password + +# The name that gets displayed under the connect tab on +# official clients. Spaces are not allowed! +#device_name = alpinelinux-spotifyd + +# The alsa audio device to stream audio to. To get a +# list of valid devices, run `aplay -L`, +device = sysdefault + +# The alsa mixer used by `spotifyd`. +mixer = Master + +################################################################################## + +# The audio bitrate. 96, 160 or 320 kbit/s +bitrate = 320 + +# The director used to cache audio data. This setting can save +# a lot of bandwidth when activated, as it will avoid re-downloading +# audio files when replaying them. +# +# Note: The file path does not get expanded. Environment variables and +# shell placeholders like $HOME or ~ don't work! +cache_path = /var/lib/spotify/cache + +# If set to true, audio data does NOT get cached. +no_audio_cache = true + +# If set to true, enables volume normalisation between songs. +volume_normalisation = true + +# The normalisation pregain that is applied for each song. +normalisation_pregain = -10 |