CPU Usage: re-detect cores if set to physical or off
This commit is contained in:
parent
abbf9100b1
commit
7d65ae513d
1 changed files with 2 additions and 2 deletions
2
neofetch
2
neofetch
|
@ -967,7 +967,7 @@ get_cpu_usage() {
|
||||||
|
|
||||||
*)
|
*)
|
||||||
# Get CPU cores if unset.
|
# Get CPU cores if unset.
|
||||||
if [[ "$cpu_cores" == "off" ]]; then
|
if [[ "$cpu_cores" != "logical" ]]; then
|
||||||
case "$os" in
|
case "$os" in
|
||||||
"Linux" | "MINIX") cores="$(grep -c "^processor" /proc/cpuinfo)" ;;
|
"Linux" | "MINIX") cores="$(grep -c "^processor" /proc/cpuinfo)" ;;
|
||||||
"Mac OS X") cores="$(sysctl -n hw.logicalcpu_max)" ;;
|
"Mac OS X") cores="$(sysctl -n hw.logicalcpu_max)" ;;
|
||||||
|
|
Loading…
Reference in a new issue