mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-12-24 12:32:32 +00:00
Make NetBSD use the linux memory function
This commit is contained in:
7
neofetch
7
neofetch
@@ -1386,6 +1386,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
|
||||
|
||||
Reference in New Issue
Block a user