]> kaliko git repositories - mpd-sima.git/blobdiff - launch
Random fallback plugin, honoring MPD/host, more robust plugin
[mpd-sima.git] / launch
diff --git a/launch b/launch
index bf841291a345b87afe03cd4914e35be2b819fe6d..e4c44b5c8207fcd30c70024ecb73fab985e2cb9f 100755 (executable)
--- a/launch
+++ b/launch
@@ -8,7 +8,7 @@ import logging
 import sys
 
 from importlib import __import__
-from os.path import isfile, basename
+from os.path import isfile
 ##
 
 # third parties components
@@ -27,10 +27,11 @@ from sima.plugins.crop import Crop
 from sima.plugins.addhist import History
 from sima.plugins.lastfm import Lastfm
 from sima.plugins.mpd import MpdOptions
+from sima.plugins.randomfallback import RandomFallBack
 
 # official plugins to start
 PLUGINS = (Crop, History, MpdOptions,
-           Lastfm)
+           Lastfm, RandomFallBack)
 
 
 def load_contrib_plugins(sima):