Revert memory display format

This commit is contained in:
Akemi Izuko 2023-09-12 10:50:08 -06:00
parent 52a8bdd094
commit 6b792716c2
Signed by: akemi
GPG key ID: 8DE0764E1809E9FC

View file

@ -31,7 +31,7 @@ remaining_ram() {
END {
used = memtotal - mavailable
printf "%0.1fG / %.1fG", used, memtotal
printf "%0.1fG / %.1fG", used, memtotal - used
}
' /proc/meminfo
}