Console version can now play songs
[jamaendo] / scripts / player
old mode 100644 (file)
new mode 100755 (executable)
index 706819f..802bd4d
@@ -7,8 +7,11 @@ if os.path.isdir(local_module_dir):
     sys.path.append(local_module_dir)
 
 def main():
-    from jamaui.ui import JamaUI
-    player = JamaUI()
+    #from jamaui.ui import JamaUI
+    #player = JamaUI()
+    from jamaui.console import Console
+    player = Console()
+
     player.run()
 
 if __name__=="__main__":