From 954c74f130a71141fc426c31b3c706664836b75f Mon Sep 17 00:00:00 2001 From: hubobel Date: Sun, 31 May 2026 18:55:09 +0200 Subject: [PATCH] =?UTF-8?q?Proxmoxwerte=20aud=20Dash3=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- down.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/down.py b/down.py index 271d22c..1907e6f 100644 --- a/down.py +++ b/down.py @@ -763,7 +763,7 @@ def draw_dashboard_3(): ) draw.text( - (200, 185), + (170, 185), f"{cpu_load:.0f} %", fill=cpu_color, font=font_small_bold @@ -787,7 +787,7 @@ def draw_dashboard_3(): ) draw.text( - (145, 215), + (170, 215), f"{ram_load:.0f} % ({ram_used:.1f} / {ram_total:.1f} GB)", fill=ram_color, font=font_small_bold @@ -801,7 +801,7 @@ def draw_dashboard_3(): ) draw.text( - (200, 245), + (170, 245), f"{cpu_temp:.0f} °C", fill=temp_color, font=font_small_bold @@ -816,13 +816,13 @@ def draw_dashboard_3(): if server_temp < 25: room_color = "lime" - elif server_temp < 30: + elif server_temp < 31: room_color = "yellow" else: room_color = "red" draw.text( - (200, 275), + (170, 275), f"{server_temp:.1f} °C", fill=room_color, font=font_small_bold