X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/eb8cec907a50f3fd6df4b14ae10b910444017f92..c754dde180c2b18cdfb538dbf715abb20af20e21:/widgets/sysload.lua diff --git a/widgets/sysload.lua b/widgets/sysload.lua index 6167d82..df9dbea 100644 --- a/widgets/sysload.lua +++ b/widgets/sysload.lua @@ -7,40 +7,37 @@ --]] -local newtimer = require("lain.helpers").newtimer - +local helpers = require("lain.helpers") local wibox = require("wibox") - -local io = io -local string = { format = string.format, - match = string.match } - +local io = { open = io.open } +local string = { match = string.match } local setmetatable = setmetatable -- System load -- lain.widgets.sysload local sysload = {} -function worker(args) - local args = args or {} - local timeout = args.timeout or 5 +local function worker(args) + local args = args or {} + local timeout = args.timeout or 2 local settings = args.settings or function() end - widget = wibox.widget.textbox('') + sysload.widget = wibox.widget.textbox() - function update() + function sysload.update() local f = io.open("/proc/loadavg") local ret = f:read("*all") f:close() - - a, b, c = string.match(ret, "([^%s]+) ([^%s]+) ([^%s]+)") + load_1, load_5, load_15 = string.match(ret, "([^%s]+) ([^%s]+) ([^%s]+)") + + widget = sysload.widget settings() end - newtimer("sysload", timeout, update) + helpers.newtimer("sysload", timeout, sysload.update) - return widget + return sysload end return setmetatable(sysload, { __call = function(_, ...) return worker(...) end })