From 1b225cd7a0af03a6349c48326118a287fc36acd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Thu, 10 Sep 2020 19:56:33 +0200 Subject: Show CPU temperature in CPU meter Show the CPU temperature in the CPU meter, like CPU frequency, instead of using an extra Meter. --- openbsd/Platform.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'openbsd') diff --git a/openbsd/Platform.c b/openbsd/Platform.c index 8e2a5822..5601048d 100644 --- a/openbsd/Platform.c +++ b/openbsd/Platform.c @@ -187,6 +187,9 @@ double Platform_setCPUValues(Meter* this, int cpu) { if (isnan(totalPercent)) { totalPercent = 0.0; } + + v[CPU_METER_TEMPERATURE] = NAN; + return totalPercent; } -- cgit v1.2.3