refactor cpu widget

This commit is contained in:
streetturtle 2018-10-08 11:20:59 -04:00
parent b401c41a25
commit 150b950cc3
1 changed files with 4 additions and 7 deletions

View File

@ -10,10 +10,10 @@
local watch = require("awful.widget.watch") local watch = require("awful.widget.watch")
local wibox = require("wibox") local wibox = require("wibox")
local beautiful = require("beautiful")
local cpugraph_widget = wibox.widget { local cpugraph_widget = wibox.widget {
max_value = 100, max_value = 100,
color = '#74aeab',
background_color = "#00000000", background_color = "#00000000",
forced_width = 50, forced_width = 50,
step_width = 2, step_width = 2,
@ -21,7 +21,7 @@ local cpugraph_widget = wibox.widget {
widget = wibox.widget.graph widget = wibox.widget.graph
} }
-- mirros and pushs up a bit --- By default graph widget goes from left to right, so we mirror it and push up a bit
local cpu_widget = wibox.container.margin(wibox.container.mirror(cpugraph_widget, { horizontal = true }), 0, 0, 0, 2) local cpu_widget = wibox.container.margin(wibox.container.mirror(cpugraph_widget, { horizontal = true }), 0, 0, 0, 2)
local total_prev = 0 local total_prev = 0
@ -38,11 +38,8 @@ watch([[bash -c "cat /proc/stat | grep '^cpu '"]], 1,
local diff_total = total - total_prev local diff_total = total - total_prev
local diff_usage = (1000 * (diff_total - diff_idle) / diff_total + 5) / 10 local diff_usage = (1000 * (diff_total - diff_idle) / diff_total + 5) / 10
if diff_usage > 80 then widget:set_color(diff_usage > 80 and beautiful.widget_red
widget:set_color('#ff4136') or beautiful.widget_main_color)
else
widget:set_color('#74aeab')
end
widget:add_value(diff_usage) widget:add_value(diff_usage)