X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/0ef82f83e0baaa2936b6204a24ee3b3b638fd409..0180aa3bc348520c01479c40cdf6343e36ce3e59:/widgets/sysload.lua diff --git a/widgets/sysload.lua b/widgets/sysload.lua index 90bdedf..215fd62 100644 --- a/widgets/sysload.lua +++ b/widgets/sysload.lua @@ -8,13 +8,9 @@ --]] local newtimer = require("lain.helpers").newtimer - 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 @@ -23,24 +19,23 @@ local sysload = {} local function worker(args) local args = args or {} - local timeout = args.timeout or 5 + local timeout = args.timeout or 2 local settings = args.settings or function() end - sysload.widget = wibox.widget.textbox('') + sysload.widget = wibox.widget.textbox() - function sysload.update() + function 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, sysload.update) - + newtimer("sysload", timeout, update) return sysload.widget end