Initial commit.
[dwm-status] / dwmstatus-temperature.c
CommitLineData
a1751622
CL
1/*
2 * gettemperature("/sys/class/hwmon/hwmon0/device", "temp1_input");
3 */
4
5char *
6gettemperature(char *base, char *sensor)
7{
8 char *co;
9
10 co = readfile(base, sensor);
11 if (co == NULL)
12 return smprintf("");
13 return smprintf("%02.0f°C", atof(co) / 1000);
14}
15