X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/f2fb4f6fdadc1b09877e5ef6bd75e06a668a4080..6cce5b6fe11fe8c69b08140d645c604fef59e42a:/widgets/sysload.lua diff --git a/widgets/sysload.lua b/widgets/sysload.lua index b15b1bf..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 = { open = io.open } -local string = { format = string.format, - match = string.match } - +local string = { match = string.match } local setmetatable = setmetatable -- System load @@ -23,14 +19,14 @@ 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 update() local f = io.open("/proc/loadavg") - local ret = f:read("*a") + local ret = f:read("*all") f:close() load_1, load_5, load_15 = string.match(ret, "([^%s]+) ([^%s]+) ([^%s]+)")