Merge pull request #370 from coypoop/patch-1
netbsd specific stuff for grabbing memory size
This commit is contained in:
commit
9bc65656ed
1 changed files with 4 additions and 1 deletions
5
neofetch
5
neofetch
|
@ -1172,7 +1172,10 @@ getmemory() {
|
||||||
*) memfree="$(($(vmstat | awk 'END{printf $5}') / 1024))" ;;
|
*) memfree="$(($(vmstat | awk 'END{printf $5}') / 1024))" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
memtotal="$(($(sysctl -n hw.physmem) / 1024 / 1024))"
|
case "$distro" in
|
||||||
|
"NetBSD"*) memtotal="$(($(sysctl -n hw.physmem64) / 1024 / 1024))" ;;
|
||||||
|
*) memtotal="$(($(sysctl -n hw.physmem) / 1024 / 1024))" ;;
|
||||||
|
esac
|
||||||
memused="$((memtotal - memfree))"
|
memused="$((memtotal - memfree))"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue