X-Git-Url: https://git.xinqibao.xyz/slstatus.git/blobdiff_plain/e213b48122f1f8e8d837053324d9c891a67a38d2..c1dc896c806693a4a368abf59e6890d32d520074:/components/temperature.c diff --git a/components/temperature.c b/components/temperature.c index d56cc0e..8462d0f 100644 --- a/components/temperature.c +++ b/components/temperature.c @@ -3,6 +3,7 @@ #include "../util.h" + #if defined(__linux__) #include @@ -46,4 +47,25 @@ /* kelvin to celsius */ return bprintf("%d", (temp.value - 273150000) / 1E6); } +#elif defined(__FreeBSD__) + #include + #include + #include + + const char * + temp(const char *zone) + { + char buf[256]; + int temp; + size_t len; + + len = sizeof(temp); + snprintf(buf, sizeof(buf), "hw.acpi.thermal.%s.temperature", zone); + if (sysctlbyname(buf, &temp, &len, NULL, 0) == -1 + || !len) + return NULL; + + /* kelvin to decimal celcius */ + return bprintf("%d.%d", (temp - 2731) / 10, abs((temp - 2731) % 10)); + } #endif