mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-12-24 20:34:57 +00:00
Fix free memory on OpenBSD
This commit is contained in:
2
fetch
2
fetch
@@ -643,7 +643,7 @@ getmemory () {
|
||||
memtotal=$(dmesg | awk '/real mem/ {printf $5}')
|
||||
memtotal=${memtotal/\(/}
|
||||
memtotal=${memtotal/)MB/}
|
||||
memfree=$(top -d 1 | awk '/Real:/ {print $4}')
|
||||
memfree=$(top -d 1 | awk '/Real:/ {print $6}')
|
||||
memfree=${memfree/M/}
|
||||
memused=$((memtotal - memfree))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user