Added command_line.py to control the player via command line.

This commit is contained in:
The Wobbler 2024-12-28 18:12:59 +01:00
parent 94269fdae4
commit 10c36b37a1
5 changed files with 32 additions and 16 deletions

View file

@ -23,11 +23,6 @@ class Wobuzz:
self.gui = GUI(self)
self.gui_communication = GUICommunication(self)
track_paths = sys.argv[1:]
if track_paths:
self.player.load_tracks_from_paths(track_paths)
def on_settings_change(self, key, value):
self.gui_communication.on_settings_change(key, value)