From 99bae95bd48dd96bcceea7d3bff7fd7bcc998a0f Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Sat, 1 Nov 2025 13:53:43 -0400 Subject: [PATCH] SysMon-Bar: Clamped CPU usage to 99% --- Modules/Bar/Widgets/SystemMonitor.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Bar/Widgets/SystemMonitor.qml b/Modules/Bar/Widgets/SystemMonitor.qml index a4efa4dd..34120d39 100644 --- a/Modules/Bar/Widgets/SystemMonitor.qml +++ b/Modules/Bar/Widgets/SystemMonitor.qml @@ -114,7 +114,7 @@ Rectangle { } NText { - text: `${Math.round(SystemStatService.cpuUsage)}%` + text: `${Math.min(99, Math.round(SystemStatService.cpuUsage))}%` family: Settings.data.ui.fontFixed pointSize: textSize applyUiScale: false