mirror of
https://github.com/kuhyx/scripts.git
synced 2026-07-06 21:23:14 +02:00
fix: lack of cpu temperature for intel cpu
This commit is contained in:
parent
fc53f2c049
commit
511e87c1df
@ -3,7 +3,10 @@
|
|||||||
# CPU Temperature
|
# CPU Temperature
|
||||||
cpu_temp=$(sensors | awk '/^Tctl:/ {print $2}' | tr -d '+°C')
|
cpu_temp=$(sensors | awk '/^Tctl:/ {print $2}' | tr -d '+°C')
|
||||||
if [ -z "$cpu_temp" ]; then
|
if [ -z "$cpu_temp" ]; then
|
||||||
cpu_temp=$(sensors | awk '/^Package id 0:/ {print $3}' | tr -d '+°C')
|
cpu_temp=$(sensors | awk '/^Package id 0:/ {print $4}' | tr -d '+°C')
|
||||||
|
fi
|
||||||
|
if [ -z "$cpu_temp" ]; then
|
||||||
|
cpu_temp=$(sensors | awk '/^Core 0:/ {print $3}' | tr -d '+°C')
|
||||||
fi
|
fi
|
||||||
if [ -z "$cpu_temp" ]; then
|
if [ -z "$cpu_temp" ]; then
|
||||||
cpu_temp="N/A"
|
cpu_temp="N/A"
|
||||||
@ -22,8 +25,4 @@ if [[ "$cpu_load" != "N/A" ]]; then
|
|||||||
:
|
:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cpu_metrics=$(echo "CPU Temp: $cpu_temp°C, CPU Load: $cpu_load, Color: $cpu_color")
|
echo -e "<span color=\"$cpu_color\"> CPU: ${cpu_temp}°C, Load: ${cpu_load}</span>"
|
||||||
cpu_temp=$(echo "$cpu_metrics" | awk -F', ' '{print $1}' | awk -F': ' '{print $2}')
|
|
||||||
cpu_load=$(echo "$cpu_metrics" | awk -F', ' '{print $2}' | awk -F': ' '{print $2}')
|
|
||||||
cpu_color=$(echo "$cpu_metrics" | awk -F', ' '{print $3}' | awk -F': ' '{print $2}')
|
|
||||||
echo -e "<span color=\"$cpu_color\"> CPU: ${cpu_temp}, Load: ${cpu_load}</span>"
|
|
||||||
Loading…
Reference in New Issue
Block a user