1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/navidrome_ynh.git synced 2024-09-03 19:46:30 +02:00
navidrome_ynh/config_panel.toml
Éric Gaspar 9138d0185b
More config panel (#73)
* Fix

* Update config_panel.toml
2022-01-25 10:51:35 +01:00

46 lines
1.5 KiB
TOML

version = "1.0"
[main]
name = "Navidrome configuration"
services = ["__APP__"]
[main.config]
name = "Configuration Options"
[main.config.enable_animation]
ask = "Enable cover animation"
type = "boolean"
yes = "true"
no = "false"
help = "Controls whether the player in the UI will animate the album cover"
bind = "EnableCoverAnimation:/var/lib/navidrome/navidrome.toml"
[main.config.enable_downloads]
ask = "Allow music download"
type = "boolean"
yes = "true"
no = "false"
help = "Enable the option in the UI to download music/albums/artists/playlists from the server"
bind = "EnableDownloads:/var/lib/navidrome/navidrome.toml"
[main.config.scanner_extractor]
ask = "Select metadata extractor"
type = "select"
choices = ["taglib", "ffmpeg"]
default = "taglib"
help = "Select metadata extractor implementation"
bind = "Scanner.Extractor:/var/lib/navidrome/navidrome.toml"
[main.config.enable_transcoding]
ask = "Enable transcoding"
type = "boolean"
yes = "true"
no = "false"
help = "Enables transcoding configuration in the UI"
bind = "EnableTranscodingConfig:/var/lib/navidrome/navidrome.toml"
[main.config.welcome_message]
ask = "Welcome message"
type = "string"
help = "Add a welcome message to the login screen"
bind = "UIWelcomeMessage:/var/lib/navidrome/navidrome.toml"