From 8e35a983bf24f6f90df4630b2b55409f0ca1d213 Mon Sep 17 00:00:00 2001 From: Arvydas Sidorenko Date: Fri, 15 Jun 2012 20:48:17 +0200 Subject: Ported vicious.contrib to lua 5.2 Signed-off-by: Arvydas Sidorenko Signed-off-by: Adrian C. (anrxc) --- contrib/batacpi.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'contrib/batacpi.lua') diff --git a/contrib/batacpi.lua b/contrib/batacpi.lua index 62156fd..fc7d54b 100644 --- a/contrib/batacpi.lua +++ b/contrib/batacpi.lua @@ -13,7 +13,8 @@ local string = { match = string.match } -- Batacpi: provides state, charge, and remaining time for all batteries using acpitool -module("vicious.contrib.batacpi") +-- vicious.contrib.batacpi +local batacpi = {} -- {{{ Battery widget type @@ -48,4 +49,4 @@ local function worker(format) end -- }}} -setmetatable(_M, { __call = function(_, ...) return worker(...) end }) +return setmetatable(batacpi, { __call = function(_, ...) return worker(...) end }) -- cgit v1.2.3