From 58e74f44d9884961451acb043d948fab48ff5f79 Mon Sep 17 00:00:00 2001 From: Justin Date: Tue, 22 Aug 2023 22:12:27 +0800 Subject: [PATCH] changed default timezones --- world_clock2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/world_clock2.py b/world_clock2.py index 532f7f1..5cd6048 100644 --- a/world_clock2.py +++ b/world_clock2.py @@ -8,7 +8,7 @@ try: with open('clock_screensaver.json', 'r') as f: settings = json.load(f)['world_clock'] except: - settings1 = {"clock1": {"time_color": "White", "weekday_color": "Cyan", "date_color": "Blue", "timezone": "Asia/Tokyo", "display_seconds": True, "display_pm": True, "12hour": True}, "clock2": {"time_color": "Orange", "date_color": "White", "timezone": "Asia/Tokyo", "display_seconds": True, "display_pm": True, "12hour": True}, "world_clock": {"city_color": "White", "display_seconds": True, "display_pm": True, "12hour": True}} + settings1 = {"clock1": {"time_color": "White", "weekday_color": "Cyan", "date_color": "Blue", "timezone": "Etc/GMT+4", "display_seconds": True, "display_pm": True, "12hour": True}, "clock2": {"time_color": "Orange", "date_color": "White", "timezone": "Etc/GMT+4", "display_seconds": True, "display_pm": True, "12hour": True}, "world_clock": {"city_color": "White", "display_seconds": True, "display_pm": True, "12hour": True}} with open('clock_screensaver.json', 'w') as f: json.dump(settings1, f) settings = settings1['world_clock']