|
|
@ -50,7 +50,7 @@ export default function Widget({ options }) {
|
|
|
|
if (options.cputemp && cpuSensors) {
|
|
|
|
if (options.cputemp && cpuSensors) {
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
mainTemp = cpuSensors.reduce((acc, s) => acc + s.value, 0) / cpuSensors.length;
|
|
|
|
mainTemp = cpuSensors.reduce((acc, s) => acc + s.value, 0) / cpuSensors.length;
|
|
|
|
maxTemp = Math.max(cpuSensors.reduce((acc, s) => acc + s.warning, 0) / cpuSensors.length, maxTemp);
|
|
|
|
maxTemp = Math.max(cpuSensors.reduce((acc, s) => acc + (s.warning > 0 ? s.warning : 0), 0) / cpuSensors.length, maxTemp);
|
|
|
|
if (unit === "fahrenheit") {
|
|
|
|
if (unit === "fahrenheit") {
|
|
|
|
mainTemp = convertToFahrenheit(mainTemp);
|
|
|
|
mainTemp = convertToFahrenheit(mainTemp);
|
|
|
|
maxTemp = convertToFahrenheit(maxTemp);
|
|
|
|
maxTemp = convertToFahrenheit(maxTemp);
|
|
|
|