mirror of
https://github.com/dylanaraps/neofetch.git
synced 2026-01-04 06:26:44 +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