Fix memory output on NetBSD

This commit is contained in:
Dylan 2016-05-13 09:06:51 +10:00
parent f48f5e92ab
commit ea1ed4d216
1 changed files with 10 additions and 0 deletions

View File

@ -938,6 +938,9 @@ getwmtheme () {
# CPU {{{
getcpu () {
# NetBSD emulates the linux /proc filesystem instead of using sysctl for hw
# information so we have to use this block below which temporarily sets the
# OS to 'Linux' for the duration of this function.
case "$distro" in
"NetBSD"*) local os="Linux" ;;
esac
@ -1382,6 +1385,13 @@ getgpu () {
# Memory {{{
getmemory () {
# NetBSD emulates the linux /proc filesystem instead of using sysctl for hw
# information so we have to use this block below which temporarily sets the
# OS to 'Linux' for the duration of this function.
case "$distro" in
"NetBSD"*) local os="Linux" ;;
esac
case "$os" in
"Linux" | "Windows")
if [ ! -z "$(grep -F "MemAvail" /proc/meminfo)" ]; then