mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-06-02 02:26:00 +00:00
SysMon-Bar: Do not display % when reaching 100% usage. Fix #635
This commit is contained in:
@@ -114,7 +114,14 @@ Rectangle {
|
||||
}
|
||||
|
||||
NText {
|
||||
text: `${Math.min(99, Math.round(SystemStatService.cpuUsage))}%`
|
||||
text: {
|
||||
let usage = Math.round(SystemStatService.cpuUsage)
|
||||
if (usage < 100) {
|
||||
return `${usage}%`
|
||||
} else {
|
||||
return usage
|
||||
}
|
||||
}
|
||||
family: Settings.data.ui.fontFixed
|
||||
pointSize: textSize
|
||||
applyUiScale: false
|
||||
|
||||
Reference in New Issue
Block a user