2017-12-15 15:11:44 +01:00
|
|
|
-------------------------------------------------
|
|
|
|
-- CPU Widget for Awesome Window Manager
|
|
|
|
-- Shows the current CPU utilization
|
|
|
|
-- More details could be found here:
|
|
|
|
-- https://github.com/streetturtle/awesome-wm-widgets/tree/master/cpu-widget
|
|
|
|
|
|
|
|
-- @author Pavel Makhov
|
|
|
|
-- @copyright 2017 Pavel Makhov
|
|
|
|
-------------------------------------------------
|
|
|
|
|
2017-09-28 01:45:25 +02:00
|
|
|
local watch = require("awful.widget.watch")
|
|
|
|
local wibox = require("wibox")
|
2018-10-08 17:20:59 +02:00
|
|
|
local beautiful = require("beautiful")
|
2017-09-28 01:45:25 +02:00
|
|
|
|
2017-09-28 15:42:38 +02:00
|
|
|
local cpugraph_widget = wibox.widget {
|
2017-09-28 01:45:25 +02:00
|
|
|
max_value = 100,
|
2018-01-28 23:01:04 +01:00
|
|
|
background_color = "#00000000",
|
2017-09-28 01:45:25 +02:00
|
|
|
forced_width = 50,
|
|
|
|
step_width = 2,
|
|
|
|
step_spacing = 1,
|
|
|
|
widget = wibox.widget.graph
|
|
|
|
}
|
|
|
|
|
2018-10-08 17:20:59 +02:00
|
|
|
--- By default graph widget goes from left to right, so we mirror it and push up a bit
|
2017-12-11 23:08:40 +01:00
|
|
|
local cpu_widget = wibox.container.margin(wibox.container.mirror(cpugraph_widget, { horizontal = true }), 0, 0, 0, 2)
|
2017-09-28 01:45:25 +02:00
|
|
|
|
|
|
|
local total_prev = 0
|
|
|
|
local idle_prev = 0
|
|
|
|
|
2018-09-20 18:20:27 +02:00
|
|
|
watch([[bash -c "cat /proc/stat | grep '^cpu '"]], 1,
|
2017-09-28 01:45:25 +02:00
|
|
|
function(widget, stdout, stderr, exitreason, exitcode)
|
|
|
|
local user, nice, system, idle, iowait, irq, softirq, steal, guest, guest_nice =
|
|
|
|
stdout:match('(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)%s')
|
|
|
|
|
|
|
|
local total = user + nice + system + idle + iowait + irq + softirq + steal
|
|
|
|
|
|
|
|
local diff_idle = idle - idle_prev
|
|
|
|
local diff_total = total - total_prev
|
|
|
|
local diff_usage = (1000 * (diff_total - diff_idle) / diff_total + 5) / 10
|
|
|
|
|
2018-10-08 17:20:59 +02:00
|
|
|
widget:set_color(diff_usage > 80 and beautiful.widget_red
|
|
|
|
or beautiful.widget_main_color)
|
2017-09-28 01:45:25 +02:00
|
|
|
|
|
|
|
widget:add_value(diff_usage)
|
|
|
|
|
|
|
|
total_prev = total
|
|
|
|
idle_prev = idle
|
|
|
|
end,
|
|
|
|
cpugraph_widget
|
|
|
|
)
|
2017-09-28 15:42:38 +02:00
|
|
|
|
2018-01-28 23:01:04 +01:00
|
|
|
return cpu_widget
|