Merge pull request #307 from dylanaraps/solaris_fixes
Solaris: Simplify CPU commands
This commit is contained in:
commit
8cb06c8cb3
4
neofetch
4
neofetch
|
@ -728,11 +728,11 @@ getcpu() {
|
|||
cpu="${cpu/ @*}"
|
||||
|
||||
# Get cpu speed
|
||||
speed="$(psrinfo -v | tail -2 | head -1 | awk '{print $6}')"
|
||||
speed="$(psrinfo -v | awk '/operates at/ {print $6}')"
|
||||
speed="$((speed / 100))"
|
||||
|
||||
# Get cpu cores
|
||||
cores="$(kstat -m cpu_info | grep "chip_id" | wc -l | tr -d ' ')"
|
||||
cores="$(kstat -m cpu_info | grep -c "chip_id")"
|
||||
|
||||
# Fix for speeds under 1ghz
|
||||
if [ -z "${speed:1}" ]; then
|
||||
|
|
Reference in New Issue