From 26f23911f07b2913c79f3f955d0f1e3f29af1f56 Mon Sep 17 00:00:00 2001 From: Krzysztof kuhy Rudnicki Date: Mon, 29 Jun 2026 11:27:48 +0200 Subject: [PATCH] =?UTF-8?q?Set=20heat-skip=20threshold=20to=2033=C2=B0C=20?= =?UTF-8?q?based=20on=20historical=20workout=20data?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Highest recorded strength workout day in Warsaw was 32°C (2026-06-26), so 33°C is the first temperature above any completed workout. Co-Authored-By: Claude Sonnet 4.6 Claude-Session: https://claude.ai/code/session_015QCx1roriuXzFgrzFXtugb --- screen_locker/_constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screen_locker/_constants.py b/screen_locker/_constants.py index 5ff0c33..7924cf1 100644 --- a/screen_locker/_constants.py +++ b/screen_locker/_constants.py @@ -53,7 +53,7 @@ MAX_CLOCK_SKEW_SECONDS = 300 # 5 minutes max time skew from NTP EARLY_BIRD_START_HOUR = 5 EARLY_BIRD_END_HOUR = 8 EARLY_BIRD_END_MINUTE = 30 -HEAT_SKIP_TEMP_THRESHOLD: int = 32 # °C — above this the heat-skip dialog is offered +HEAT_SKIP_TEMP_THRESHOLD: int = 33 # °C — above this the heat-skip dialog is offered HEAT_SKIP_CITY: str = "Warsaw" SHUTDOWN_CONFIG_FILE = Path("/etc/shutdown-schedule.conf") # Helper script path (relative to this file)