1 ########################################################################
3 # If you need special settings, rename this file as mpd_sima.cfg within
4 # your $XDG_CONFIG_HOME (default is $HOME/.config/mpd_sima/)
5 # You can also call it with --config option.
7 # cf. man 5 mpd_sima.cfg
8 ########################################################################
10 ########################## MPD SECTION ################################
14 # type: string (IP or FQDN)
15 # description: MPD host
21 # description: MPD host port
27 # default: unset, not using authentication
28 # description: MPD host password, comment if you don't use
32 #######################################################################
34 ######################## LOGGING FACILITY #############################
38 # type: string (file path)
39 # description: file to log to. Usually used in daemon mode.
40 # default: unset, logging to stdin/stdout
45 # description: log verbosity
48 # * debug, PAY ATTENTION: *DEBUG LEVEL MIGHT PRINT OUT YOUR PASSWORD*
55 #######################################################################
58 ######################## SIMA CORE ####################################
60 # These settings deal with MPD_sima core behaviour.
63 # type: comma separated string list
65 # contrib = Scrobble, AwesomePlugin,
66 # ExperimentalTest, AnotherTest
68 # internal = "Lastfm, Random, Crop"
71 # Possible values for internal
72 # Lastfm : Queue using last.fm web service for suggestions.
73 # EchoNest : Queue using EchoNest web service for suggestions.
74 # Random : Queue a track at random (different flavour, cf. documentation)
75 # Crop : Remove old tracks from queue
77 # description: Plugins list declaration.
78 # Optional plugin's configuration lays in its own section.
79 # For instance a "AwesomePlugin" declared here
80 # gets its configuration from the corresponding section:
82 # internal plugins will look for a section named after the lower-cased name
83 # of the plugin, ie. AwesomePlugin → awesomeplugin.
85 # Two plugins sources are available, internal and contrib
87 internal = Lastfm, Random, Crop
91 # type: integer (in hours)
93 # description: How far to look back in history to avoid to play twice the same
101 # description: Queue length threshold triggering tracks addition
107 # description: Use of MusicBrainzIdentifier tag
110 ######################### PLUGINS #####################################
115 # default: unset, not cropping playlist
116 # description: How many played tracks to keep in the playlist.
117 # Allow to maintain a fixed length playlist.
118 # Leave commented to keep all tracks
125 # description: Random queuing, different mode, aka random flavour, are available.
127 # * pure: complete random choice among all tracks available in the
128 # player media library
129 # * sensible: use play history to filter chosen tracks
130 # * genre: # NOT IMPLEMENTED #
131 # chose among the same genre as current track (using genre
132 # tag). If no genre tag is available "sensible" flavour
138 # description: how many tracks the plugin will try to get
148 # description: The default is to queue random tracks from similar artists.
150 # track : Will queue tracks from similar artists (default).
151 # top : Will queue top tracks from similar artists.
152 # album : Will queue whole album from similar artists.
157 # description: Number of similar artist to retrieve from local media library.
158 # When set to something superior to zero, MPD_sima tries to get as much similar
159 # artists from media library
163 # type: integer in [1, +∞]
170 # scope: "track" and "top" queue modes
171 # description: Prevent from queueing a track from the same album (for instance
177 # scope: "track" and "top" queue modes
178 # description: how many tracks the plugin will try to get
183 # scope: "album" queue mode
184 # description: how many albums the plugin will try to get
189 # description: whether or not to use on-disk persistent http cache
190 # * When set to "true", sima will use a persistent cache for its http client.
191 # The cache is written along with the dbfile in:
192 # $XDG_CONFIG_HOME/mpd_sima/http/<web_service>
193 # Toggling http cache is only available for last.fm. EchoNest have rate limits,
194 # we must then pay attention to bandwidth and use of caching is required.
195 # * If set to "false", caching is still done but in memory.
200 ####################### END OF CONFIGURATION ##########################
201 # vim: syntax=cfg fileencoding=utf-8