2017-01-25 17:55:23 +01:00
|
|
|
-- {{{ Grab environment
|
|
|
|
local string = { match = string.match }
|
|
|
|
local helpers = require("vicious.helpers")
|
2019-08-23 10:51:15 +02:00
|
|
|
local type = type
|
2017-01-25 17:55:23 +01:00
|
|
|
-- }}}
|
|
|
|
|
|
|
|
|
|
|
|
-- Thermal: provides temperature levels of ACPI and coretemp thermal zones
|
|
|
|
-- vicious.widgets.thermal
|
|
|
|
local thermal_freebsd = {}
|
|
|
|
|
|
|
|
-- {{{ Thermal widget type
|
2019-07-31 17:09:11 +02:00
|
|
|
function thermal_freebsd.async(format, warg, callback)
|
|
|
|
if not warg then return callback{} end
|
2017-01-25 17:55:23 +01:00
|
|
|
if type(warg) ~= "table" then warg = { warg } end
|
|
|
|
|
2019-07-31 17:09:11 +02:00
|
|
|
helpers.sysctl_async(warg, function(ret)
|
2019-07-31 17:51:47 +02:00
|
|
|
local thermals = {}
|
|
|
|
|
|
|
|
for i=1,#warg do
|
2019-07-31 17:09:11 +02:00
|
|
|
if ret[warg[i]] ~= nil then
|
|
|
|
thermals[i] = string.match(ret[warg[i]], "[%d]+")
|
|
|
|
else
|
|
|
|
thermals[i] = "N/A"
|
|
|
|
end
|
2017-01-25 17:55:23 +01:00
|
|
|
end
|
|
|
|
|
2019-07-31 17:09:11 +02:00
|
|
|
callback(thermals)
|
|
|
|
end)
|
2017-01-25 17:55:23 +01:00
|
|
|
end
|
|
|
|
-- }}}
|
|
|
|
|
2019-07-31 17:09:11 +02:00
|
|
|
return helpers.setasyncall(thermal_freebsd)
|