1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-25 05:52:50 -05:00

Revert "Implement some data smoothing"

This reverts commit 8bef7ded1e.
This commit is contained in:
bbedward
2025-08-09 20:01:26 -04:00
parent 8bef7ded1e
commit 218eefbe19
5 changed files with 18 additions and 69 deletions

View File

@@ -57,9 +57,9 @@ Row {
StyledText {
text: {
if (DankgopService.smoothedCpuUsage === undefined || DankgopService.smoothedCpuUsage === null)
if (DankgopService.cpuUsage === undefined || DankgopService.cpuUsage === null)
return "--%"
return DankgopService.smoothedCpuUsage.toFixed(1) + "%"
return DankgopService.cpuUsage.toFixed(1) + "%"
}
font.pixelSize: Theme.fontSizeLarge
font.family: SettingsData.monoFontFamily