calculate average temp with sysctl values

This commit is contained in:
2026-01-09 15:10:50 -08:00
parent 893b1142d5
commit d83c1ee9ff

View File

@ -2,10 +2,17 @@
CPUTEMP=$(sensors | grep "Package id 0" | awk '{print $4}' | sed s/+// )
# freebsd
# calculate average from all cores (unfinished)
#CORETEMPS=$(hwstat | grep CPU | awk '{print $2}')
# report only core 0 temp for now...
CPUTEMP="$(hwstat | grep CPU | awk 'NR==1 {print $2}')°C"
#CORETEMPS=$(sysctl dev.cpu | grep temperature | awk '{print $2}' | sed s/.[0-9]C$//g)
#
#CORE_COUNT=0
#SUM=0
#
#for temp in $CORETEMPS; do
# SUM=$((SUM + temp))
# CORE_COUNT=$((CORE_COUNT + 1))
#done
#
#
#CPUTEMP="$((SUM / CORE_COUNT)) C"
echo $CPUTEMP