X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/3f854a45f578f0a93d9f561bb8d7f574ab5675ee..586c54a25750fd90d91c15ac8eb818b2613de582:/widget/bat.lua diff --git a/widget/bat.lua b/widget/bat.lua index 85d574e..9976517 100644 --- a/widget/bat.lua +++ b/widget/bat.lua @@ -7,24 +7,23 @@ --]] -local first_line = require("lain.helpers").first_line -local newtimer = require("lain.helpers").newtimer -local naughty = require("naughty") -local wibox = require("wibox") -local math = { abs = math.abs, - floor = math.floor, - log10 = math.log10, - min = math.min } -local string = { format = string.format } -local ipairs = ipairs -local type = type -local tonumber = tonumber -local setmetatable = setmetatable +local first_line = require("lain.helpers").first_line +local newtimer = require("lain.helpers").newtimer +local naughty = require("naughty") +local wibox = require("wibox") +local math = { abs = math.abs, + floor = math.floor, + log10 = math.log10, + min = math.min } +local string = { format = string.format } +local ipairs = ipairs +local type = type +local tonumber = tonumber -- Battery infos -- lain.widget.bat -local function worker(args) +local function factory(args) local bat = { widget = wibox.widget.textbox() } local args = args or {} local timeout = args.timeout or 30 @@ -179,4 +178,4 @@ local function worker(args) return bat end -return setmetatable({}, { __call = function(_, ...) return worker(...) end }) +return factory