move hddtemp widget to match new layout

This commit is contained in:
mutlusun 2017-01-25 17:51:57 +01:00 committed by Jörg Thalheim
parent 9a727d417e
commit bb5e6af08c
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ local helpers = require("vicious.helpers")
-- Hddtemp: provides hard drive temperatures using the hddtemp daemon
-- vicious.widgets.hddtemp
local hddtemp = {}
local hddtemp_linux = {}
-- {{{ HDD Temperature widget type
@ -37,4 +37,4 @@ local function worker(format, warg)
end
-- }}}
return setmetatable(hddtemp, { __call = function(_, ...) return worker(...) end })
return setmetatable(hddtemp_linux, { __call = function(_, ...) return worker(...) end })