diff --git a/core/settings.py b/core/settings.py index 3169b9c..5f3232e 100644 --- a/core/settings.py +++ b/core/settings.py @@ -43,14 +43,13 @@ class Settings(QObject): # Dashboard 'dashboard_widgets': [ {'type': 'QuickActions', 'row': 0, 'col': 0}, - {'type': 'Spotify', 'row': 0, 'col': 1}, {'type': 'PEDTracker', 'row': 1, 'col': 0}, {'type': 'SkillProgress', 'row': 1, 'col': 1}, ], # Overlay widgets 'overlay_widgets': { - 'spotify': {'enabled': True, 'x': 0, 'y': 100}, + 'spotify': {'enabled': False, 'x': 0, 'y': 100}, 'skillgain': {'enabled': False, 'x': 0, 'y': 200}, }, diff --git a/core/settings_secure.py b/core/settings_secure.py index 9a5f656..ef454a3 100644 --- a/core/settings_secure.py +++ b/core/settings_secure.py @@ -45,14 +45,13 @@ class Settings(QObject): # Dashboard 'dashboard_widgets': [ {'type': 'QuickActions', 'row': 0, 'col': 0}, - {'type': 'Spotify', 'row': 0, 'col': 1}, {'type': 'PEDTracker', 'row': 1, 'col': 0}, {'type': 'SkillProgress', 'row': 1, 'col': 1}, ], # Overlay widgets 'overlay_widgets': { - 'spotify': {'enabled': True, 'x': 0, 'y': 100}, + 'spotify': {'enabled': False, 'x': 0, 'y': 100}, 'skillgain': {'enabled': False, 'x': 0, 'y': 200}, },