diff --git a/devices/temp_linux.go b/devices/temp_linux.go index c0f4cae..b248006 100644 --- a/devices/temp_linux.go +++ b/devices/temp_linux.go @@ -26,6 +26,7 @@ func devs() []string { for _, sensor := range sensors { label := sensor.SensorKey label = strings.TrimSuffix(sensor.SensorKey, "_input") + label = strings.TrimSuffix(label, "_thermal") rv = append(rv, label) sensorMap[sensor.SensorKey] = label }