memory: simplify

This commit is contained in:
Dylan Araps 2018-04-15 20:06:33 +10:00
parent 82cc8ebb6e
commit 41fd2df411
1 changed files with 3 additions and 11 deletions

View File

@ -1434,18 +1434,10 @@ get_memory() {
"Linux" | "Windows")
# MemUsed = Memtotal + Shmem - MemFree - Buffers - Cached - SReclaimable
# Source: https://github.com/KittyKatt/screenFetch/issues/386#issuecomment-249312716
while IFS=":" read -r a b; do
case "$a" in
"MemTotal") mem_used="$((mem_used+=${b/kB}))"; mem_total="${b/kB}" ;;
"Shmem") mem_used="$((mem_used+=${b/kB}))" ;;
"MemFree" | "Buffers" | "Cached" | "SReclaimable")
mem_used="$((mem_used-=${b/kB}))"
;;
esac
done < /proc/meminfo
IFS=$'\n'"|:|kB" read -d "" -ra mem < /proc/meminfo
mem_used="$((mem_used / 1024))"
mem_total="$((mem_total / 1024))"
mem_used="$(((mem[1] + mem[64] - mem[4] - mem[11] - mem[14]- mem[70]) / 1024))"
mem_total="$((mem[1] / 1024))"
;;
"Mac OS X" | "iPhone OS")