summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--devices/temp_linux.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/devices/temp_linux.go b/devices/temp_linux.go
index b738002..c0f4cae 100644
--- a/devices/temp_linux.go
+++ b/devices/temp_linux.go
@@ -25,9 +25,7 @@ func devs() []string {
rv := make([]string, 0, len(sensors))
for _, sensor := range sensors {
label := sensor.SensorKey
- if strings.Contains(sensor.SensorKey, "input") {
- label = sensor.SensorKey[:strings.Index(sensor.SensorKey, "_input")]
- }
+ label = strings.TrimSuffix(sensor.SensorKey, "_input")
rv = append(rv, label)
sensorMap[sensor.SensorKey] = label
}