mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-12-22 19:49:54 +00:00
OS X memory: Remove the need for 'bc'
This commit is contained in:
2
neofetch
2
neofetch
@@ -1401,7 +1401,7 @@ getmemory () {
|
||||
;;
|
||||
|
||||
"Mac OS X" | "iPhone OS")
|
||||
memtotal="$(printf "scale=0; %s\n" "$(sysctl -n hw.memsize)"/1024^2 | bc)"
|
||||
memtotal="$(($(sysctl -n hw.memsize) / 1024 / 1024))"
|
||||
memwired="$(vm_stat | awk '/wired/ { print $4 }')"
|
||||
memactive="$(vm_stat | awk '/active / { printf $3 }')"
|
||||
memcompressed="$(vm_stat | awk '/occupied/ { printf $5 }')"
|
||||
|
||||
Reference in New Issue
Block a user