From df86f7b92a3d0985d6d8c9ab1d027eeddb7b0443 Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Thu, 17 Oct 2024 22:32:17 -0500 Subject: remove awesome config, push to own repo --- awesome/widgets/cpu.lua | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 awesome/widgets/cpu.lua (limited to 'awesome/widgets/cpu.lua') diff --git a/awesome/widgets/cpu.lua b/awesome/widgets/cpu.lua deleted file mode 100644 index d92bce8..0000000 --- a/awesome/widgets/cpu.lua +++ /dev/null @@ -1,38 +0,0 @@ -local wibox = require("wibox") -local widgets = require("util.widgets") - --- this is directly adapted from slstatus's cpu.c module -local cpu_time = { 0,0,0,0,0,0,0 } -- user, nice, system, idle, iowait, irq, softirq - -function linux_cpu_usage(widget) - -- read stat - local statf = io.open("/proc/stat") - local stat_iter = statf:read():gmatch("%d+") - statf:close() - - -- calc - local sum = 0 - local a, b = cpu_time, {} -- set cpu_time as a for smaller code - table.move(a, 1, 7, 1, b) -- copy first 7 to b - - for i = 1, 7 do - a[i] = stat_iter() - sum = sum + b[i] - a[i] - end - - if sum == 0 then - return - end - - local usage = ((b[1] + b[2] + b[3] + b[6] + b[7]) - - (a[1] + a[2] + a[3] + a[6] + a[7])) * 100 / sum - - widget:set_text(math.floor(usage)) -end - --- return correct widget for os -if osname == "Linux" then - return widgets.watchfn(linux_cpu_usage, 5) -end - -return wibox.widget.textbox("unsupported os") -- cgit v1.2.3