2018-12-14 11:13:28 +08:00
|
|
|
// +build linux freebsd
|
|
|
|
|
2018-05-16 04:48:26 +08:00
|
|
|
package widgets
|
|
|
|
|
|
|
|
import (
|
2018-12-05 13:44:25 +08:00
|
|
|
"log"
|
2018-05-16 04:48:26 +08:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
psHost "github.com/shirou/gopsutil/host"
|
2019-02-04 12:11:35 +08:00
|
|
|
|
|
|
|
"github.com/cjbassi/gotop/src/utils"
|
2018-05-16 04:48:26 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func (self *Temp) update() {
|
2018-12-05 13:44:25 +08:00
|
|
|
sensors, err := psHost.SensorsTemperatures()
|
|
|
|
if err != nil {
|
2019-02-04 12:11:28 +08:00
|
|
|
log.Printf("error recieved from gopsutil: %v", err)
|
2018-12-05 13:44:25 +08:00
|
|
|
}
|
2018-05-16 04:48:26 +08:00
|
|
|
for _, sensor := range sensors {
|
|
|
|
// only sensors with input in their name are giving us live temp info
|
2018-11-30 09:37:41 +08:00
|
|
|
if strings.Contains(sensor.SensorKey, "input") && sensor.Temperature != 0 {
|
2018-05-16 04:48:26 +08:00
|
|
|
// removes '_input' from the end of the sensor name
|
|
|
|
label := sensor.SensorKey[:strings.Index(sensor.SensorKey, "_input")]
|
2018-11-14 01:29:09 +08:00
|
|
|
if self.Fahrenheit {
|
2018-12-02 12:51:51 +08:00
|
|
|
self.Data[label] = utils.CelsiusToFahrenheit(int(sensor.Temperature))
|
2018-11-14 01:29:09 +08:00
|
|
|
} else {
|
|
|
|
self.Data[label] = int(sensor.Temperature)
|
|
|
|
}
|
2018-05-16 04:48:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|