aboutsummaryrefslogtreecommitdiff
path: root/widgets/hddtemp.lua
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/hddtemp.lua')
-rw-r--r--widgets/hddtemp.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/widgets/hddtemp.lua b/widgets/hddtemp.lua
index 0c79656..85ee767 100644
--- a/widgets/hddtemp.lua
+++ b/widgets/hddtemp.lua
@@ -12,7 +12,8 @@ local string = { gmatch = string.gmatch }
-- Hddtemp: provides hard drive temperatures using the hddtemp daemon
-module("vicious.widgets.hddtemp")
+-- vicious.widgets.hddtemp
+local hddtemp = {}
-- {{{ HDD Temperature widget type
@@ -34,4 +35,4 @@ local function worker(format, warg)
end
-- }}}
-setmetatable(_M, { __call = function(_, ...) return worker(...) end })
+return setmetatable(hddtemp, { __call = function(_, ...) return worker(...) end })