mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-15 18:43:59 +00:00
SystemStat: fixing wrong memGb calculation. Fix #507
This commit is contained in:
@@ -205,7 +205,7 @@ Singleton {
|
||||
|
||||
if (memTotal > 0) {
|
||||
const usageKb = memTotal - memAvailable
|
||||
root.memGb = (usageKb / 1000000).toFixed(1)
|
||||
root.memGb = (usageKb / 1048576).toFixed(1) // 1024*1024 = 1048576
|
||||
root.memPercent = Math.round((usageKb / memTotal) * 100)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user