From 6b8c9ddcae39abc6e6c1e9859050b7a87fe19b84 Mon Sep 17 00:00:00 2001 From: kaliko Date: Tue, 15 Dec 2020 13:30:57 +0100 Subject: [PATCH] Add example config for tags plugin --- doc/examples/offline_tags_plugin.cfg | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 doc/examples/offline_tags_plugin.cfg diff --git a/doc/examples/offline_tags_plugin.cfg b/doc/examples/offline_tags_plugin.cfg new file mode 100644 index 0000000..ab1b5c0 --- /dev/null +++ b/doc/examples/offline_tags_plugin.cfg @@ -0,0 +1,20 @@ +[MPD] +# Uses defaults for MPD connection +#host = localhost +#port = 6600 +#password = s3cr3t + +[sima] +# Setup internal plugins +# Uses Tags plugin falls back to Random if nothing is found then Crop the queue +internal = Tags, Random, Crop +history_duration=48 # 48h / 24 = 2 days +queue_length=2 # triggers autoqueue when only 2 tracks remains after current + +[tags] +# Look for files with tagged with genre "electonica" OR "IDM" OR "glitch" +genre = electonica, IDM, glitch + +[crop] +# keep 30 played tracks in playlist +consume=30 -- 2.39.2