diff --git a/config/config.json b/config/config.json index d2fab75e..b8c3d226 100644 --- a/config/config.json +++ b/config/config.json @@ -68,13 +68,13 @@ "update_interval": 1 }, "weather": { - "enabled": false, + "enabled": true, "update_interval": 600, "units": "imperial", "display_format": "{temp}°F\n{condition}" }, "stocks": { - "enabled": false, + "enabled": true, "update_interval": 300, "symbols": [ "ASTS", "SCHD", "INTC", "NVDA", "T", "VOO", "SPEST", "SMCI" @@ -82,7 +82,7 @@ "display_format": "{symbol}: ${price} ({change}%)" }, "crypto": { - "enabled": false, + "enabled": true, "update_interval": 300, "symbols": [ "BTC-USD", "ETH-USD" @@ -90,7 +90,7 @@ "display_format": "{symbol}: ${price} ({change}%)" }, "stock_news": { - "enabled": false, + "enabled": true, "update_interval": 3600, "scroll_speed": 1, "scroll_delay": 0.001, @@ -98,7 +98,7 @@ "headlines_per_rotation": 2 }, "calendar": { - "enabled": false, + "enabled": true, "credentials_file": "credentials.json", "token_file": "token.pickle", "update_interval": 3600, @@ -106,7 +106,7 @@ "calendars": ["birthdays"] }, "nhl_scoreboard": { - "enabled": false, + "enabled": true, "test_mode": false, "update_interval_seconds": 300, "live_update_interval": 15, @@ -202,7 +202,7 @@ "update_interval": 3600 }, "mlb": { - "enabled": false, + "enabled": true, "test_mode": false, "update_interval_seconds": 300, "live_update_interval": 20, @@ -218,7 +218,7 @@ } }, "text_display": { - "enabled": false, + "enabled": true, "text": "Subscribe to ChuckBuilds", "font_path": "assets/fonts/5x7.bdf", "font_size": 7, @@ -247,7 +247,7 @@ }, "music": { "enabled": true, - "preferred_source": "spotify", + "preferred_source": "ytm", "YTM_COMPANION_URL": "http://192.168.86.12:9863", "POLLING_INTERVAL_SECONDS": 1 } diff --git a/config/config_secrets.template.json b/config/config_secrets.template.json index 0a454c14..d8de634f 100644 --- a/config/config_secrets.template.json +++ b/config/config_secrets.template.json @@ -5,5 +5,10 @@ "youtube": { "api_key": "YOUR_YOUTUBE_API_KEY", "channel_id": "YOUR_YOUTUBE_CHANNEL_ID" + }, + "music": { + "SPOTIFY_CLIENT_ID": "YOUR_SPOTIFY_CLIENT_ID_HERE", + "SPOTIFY_CLIENT_SECRET": "YOUR_SPOTIFY_CLIENT_SECRET_HERE", + "SPOTIFY_REDIRECT_URI": "http://127.0.0.1:8888/callback" } } \ No newline at end of file