1 ########################################################################
3 # If you need special settings, rename this file as sima.cfg within
4 # your $XDG_CONFIG_HOME (default is $HOME/.config/sima/)
5 # You can also call it with --config option.
7 ########################################################################
9 ########################## MPD SECTION ################################
13 # type: string (IP or FQDN)
14 # description: MPD host
20 # description: MPD host port
26 # default: unset, not using authentication
27 # description: MPD host password, comment if you don't use
31 #######################################################################
33 ######################## LOGGING FACILITY #############################
37 # type: string (file path)
38 # description: file to log to. Usually used in daemon mode.
39 # default: unset, logging to stdin/stdout
44 # description: log verbosity
47 # * debug, PAY ATTENTION: *DEBUG LEVEL MIGHT PRINT OUT YOUR PASSWORD*
54 #######################################################################
57 ######################## SIMA CORE ####################################
59 # These settings deal with MPD_sima core behaviour.
62 # type: comma separated string list
64 # contrib = Scrobble, AwesomePlugin,
65 # ExperimentalTest, AnotherTest
67 # internal = "Crop, Lastfm, RandomFallBack"
69 # description: Plugins list declaration.
70 # Optional plugin's configuration lays in its own section.
71 # For instance a "AwesomePlugin" declared here
72 # gets its configuration from the corresponding section:
74 # internal plugins will look for a section named after the lower-cased name
75 # of the pluglin, ie. RandomFallBack → randomfallback.
77 # Two plugins sources are available, internal and contrib
79 internal = Crop, Lastfm, RandomFallBack
83 # type: integer (in hours)
85 # description: How far to look back in history to avoid to play twice the same
90 ## USER_DB # NOT IMPLEMENTED #
92 # description: Load user database to find similar artists
93 # User DB is loaded from $XDG_CONFIG_HOME/mpd_sima/sima.db
94 # Use simadb_cli to edit/add entries.
100 # description: Queue length triggering tracks addition
103 ######################### PLUGINS #####################################
108 # default: unset, not cropping playlist
109 # description: How many played tracks to keep in the playlist.
110 # Allow to maintain a fixed length playlist.
111 # Leave commented to keep all tracks
118 # description: When no similar tracks are found, falling back to random
119 # queuing. Different mode, aka random flavour, are available.
121 # * pure: complete random choice among all tracks available in the
122 # player media library
123 # * sensible: use play history to filter chosen tracks
124 # * genre: # NOT IMPLEMENTED #
125 # chose among the same genre as current track (using genre
126 # tag). If no genre tag is available "sensible" flavour
132 # description: how many tracks the plugin will try to get
142 # description: The default is to queue random tracks from similar artists.
144 # track : Will queue tracks from similar artists (default).
145 # top : Will queue top tracks from similar artists.
146 # album : Will queue whole album from similar artists.
151 # description: Number of similar artist to retrieve from local media library.
152 # When set to something superior to zero, MPD_sima tries to get as much similar
153 # artists from media library
157 # type: integer in [1, +∞]
164 # scope: "track" and "top" queue modes
165 # description: Prevent from queueing a track from the same album (for instance
171 # scope: "track" and "top" queue modes
172 # description: how many tracks the plugin will try to get
177 # scope: "album" queue mode
178 # description: how many albums the plugin will try to get
183 # description: whether or not to use on-disk persistent http cache
184 # * When set to "true", sima will use a persistent cache for its http client.
185 # The cache is written along with the dbfile in:
186 # $XDG_CONFIG_HOME/mpd_sima/http/<web_service>
187 # Toggling http cache is only available for last.fm. EchoNest have rate limits,
188 # we must then pay attention to bandwidth and use of caching is required.
189 # * If set to "false", caching is still done but in memory.
194 ####################### END OF CONFIGURATION ##########################
195 # vim: syntax=cfg fileencoding=utf-8