From c6c85c05114cbfee726e4dea2e1b15ab9666127d Mon Sep 17 00:00:00 2001 From: Andreas Fruhwirt Date: Sat, 25 Jul 2026 23:04:23 +0200 Subject: [PATCH] fixed hdd space mistake --- files/system-monitor-graph@mount/desklet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/system-monitor-graph@mount/desklet.js b/files/system-monitor-graph@mount/desklet.js index 13a6b63..f42755a 100644 --- a/files/system-monitor-graph@mount/desklet.js +++ b/files/system-monitor-graph@mount/desklet.js @@ -374,7 +374,7 @@ SystemMonitorGraph.prototype = { value = hdd_use / 100; break; case "space": - value = hdd_free / hdd_total; + value = 1.0 - hdd_free / hdd_total; break; } let hdd_prefix = "";