BSD revised memory function
This commit is contained in:
parent
987c67fdd5
commit
f3c4181d6d
18
neofetch
18
neofetch
|
@ -1409,23 +1409,9 @@ getmemory () {
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"BSD")
|
"BSD")
|
||||||
case "$distro" in
|
memtotal=$(($(sysctl -n hw.physmem) / 1024 / 1024))
|
||||||
"OpenBSD"*)
|
|
||||||
memtotal=$(top -d 1 | awk -F ': |/| |M' '/Memory:/ {printf $4}')
|
|
||||||
;;
|
|
||||||
|
|
||||||
"FreeBSD"* | "DragonFly"*)
|
|
||||||
memtotal=$(dmesg | awk -F '\\(| ' '/real mem/ {printf $7}')
|
|
||||||
;;
|
|
||||||
|
|
||||||
"NetBSD"*)
|
|
||||||
memtotal=$(awk -F ':|kB' '/MemTotal:/ {printf $2}' /proc/meminfo)
|
|
||||||
memtotal=$((memtotal / 1024))
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
memfree=$(($(vmstat | awk 'END{printf $4}') / 1000))
|
memfree=$(($(vmstat | awk 'END{printf $4}') / 1000))
|
||||||
memused=$((memtotal - ${memfree/M}))
|
memused=$((memtotal - memfree))
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
memory="${memused}MB / ${memtotal}MB"
|
memory="${memused}MB / ${memtotal}MB"
|
||||||
|
|
Reference in New Issue