Add cache support for CPU

This commit is contained in:
Dylan 2016-03-30 19:39:03 +11:00
parent c2557873fc
commit 7c6fcb789f
1 changed files with 7 additions and 2 deletions

View File

@ -839,8 +839,13 @@ getcpu () {
;;
"Mac OS X")
cpu="$(sysctl -n machdep.cpu.brand_string)"
cores=$(sysctl -n hw.ncpu)
if [ -f "/Library/Caches/neofetch/cpu" ]; then
source "/Library/Caches/neofetch/cpu"
else
cpu="$(sysctl -n machdep.cpu.brand_string)"
cores=$(sysctl -n hw.ncpu)
cache "cpu" "$cpu" "/Library/Caches/"
fi
;;
*"BSD" | "Windows")