2009-09-29 22:33:19 +02:00
|
|
|
---------------------------------------------------
|
|
|
|
-- Licensed under the GNU General Public License v2
|
2010-01-02 21:21:54 +01:00
|
|
|
-- * (c) 2010, Adrian C. <anrxc@sysphere.org>
|
2009-09-29 22:33:19 +02:00
|
|
|
---------------------------------------------------
|
2009-08-06 02:26:23 +02:00
|
|
|
|
|
|
|
-- {{{ Grab environment
|
2009-10-26 20:32:48 +01:00
|
|
|
local tonumber = tonumber
|
2009-08-06 02:26:23 +02:00
|
|
|
local io = { popen = io.popen }
|
|
|
|
local setmetatable = setmetatable
|
2009-11-12 01:43:00 +01:00
|
|
|
local string = { gmatch = string.gmatch }
|
2014-11-12 23:43:24 +01:00
|
|
|
local helpers = require("vicious.helpers")
|
2009-08-06 02:26:23 +02:00
|
|
|
-- }}}
|
|
|
|
|
|
|
|
|
|
|
|
-- Hddtemp: provides hard drive temperatures using the hddtemp daemon
|
2012-06-15 18:07:05 +02:00
|
|
|
-- vicious.widgets.hddtemp
|
|
|
|
local hddtemp = {}
|
2009-08-06 02:26:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
-- {{{ HDD Temperature widget type
|
2010-03-14 03:37:40 +01:00
|
|
|
local function worker(format, warg)
|
2010-07-23 12:12:11 +02:00
|
|
|
-- Fallback to default hddtemp port
|
2010-03-14 03:37:40 +01:00
|
|
|
if warg == nil then warg = 7634 end
|
2009-08-06 02:26:23 +02:00
|
|
|
|
2010-03-15 17:55:25 +01:00
|
|
|
local hdd_temp = {} -- Get info from the hddtemp daemon
|
2014-11-12 23:43:24 +01:00
|
|
|
local quoted = helpers.shellquote(warg)
|
|
|
|
local f = io.popen("echo | curl --connect-timeout 1 -fsm 3 telnet://127.0.0.1:"..quoted)
|
2009-08-06 02:26:23 +02:00
|
|
|
|
|
|
|
for line in f:lines() do
|
2010-03-13 03:39:54 +01:00
|
|
|
for d, t in string.gmatch(line, "|([%/%a%d]+)|.-|([%d]+)|[CF]+|") do
|
|
|
|
hdd_temp["{"..d.."}"] = tonumber(t)
|
2009-08-06 02:26:23 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
f:close()
|
|
|
|
|
|
|
|
return hdd_temp
|
|
|
|
end
|
|
|
|
-- }}}
|
|
|
|
|
2012-06-15 18:07:05 +02:00
|
|
|
return setmetatable(hddtemp, { __call = function(_, ...) return worker(...) end })
|