X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/6cce5b6fe11fe8c69b08140d645c604fef59e42a..ae4b9b272802c0690b711644508d63a538a3e1cd:/widgets/cpu.lua diff --git a/widgets/cpu.lua b/widgets/cpu.lua index c294566..076b692 100644 --- a/widgets/cpu.lua +++ b/widgets/cpu.lua @@ -7,8 +7,7 @@ --]] -local lines_match = require("lain.helpers").lines_match -local newtimer = require("lain.helpers").newtimer +local helpers = require("lain.helpers") local wibox = require("wibox") local math = { ceil = math.ceil } local string = { format = string.format, @@ -25,13 +24,13 @@ local function worker(args) local timeout = args.timeout or 2 local settings = args.settings or function() end - cpu.widget = wibox.widget.textbox('') + cpu.widget = wibox.widget.textbox() - function update() + function cpu.update() -- Read the amount of time the CPUs have spent performing -- different kinds of work. Read the first line of /proc/stat -- which is the sum of all CPUs. - local times = lines_match("cpu","/proc/stat") + local times = helpers.lines_match("cpu","/proc/stat") for index,time in pairs(times) do local coreid = index - 1 @@ -68,16 +67,16 @@ local function worker(args) end end - widget = cpu.widget cpu_now = cpu.core cpu_now.usage = cpu_now[0].usage + widget = cpu.widget settings() end - newtimer("cpu", timeout, update) + helpers.newtimer("cpu", timeout, cpu.update) - return cpu.widget + return cpu end return setmetatable(cpu, { __call = function(_, ...) return worker(...) end })