mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-15 18:43:59 +00:00
SysMon-Bar: Clamped CPU usage to 99%
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user