From 8c3f67920be60d3e8f9e55dd9d5cc919de844061 Mon Sep 17 00:00:00 2001 From: Klimov Nikolay Date: Thu, 20 Sep 2018 19:20:27 +0300 Subject: Calling bash in watch command --- cpu-widget/cpu-widget.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpu-widget') diff --git a/cpu-widget/cpu-widget.lua b/cpu-widget/cpu-widget.lua index f7fc2e4..f466d09 100644 --- a/cpu-widget/cpu-widget.lua +++ b/cpu-widget/cpu-widget.lua @@ -27,7 +27,7 @@ local cpu_widget = wibox.container.margin(wibox.container.mirror(cpugraph_widget local total_prev = 0 local idle_prev = 0 -watch("cat /proc/stat | grep '^cpu '", 1, +watch([[bash -c "cat /proc/stat | grep '^cpu '"]], 1, 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') -- cgit v1.2.3 From 150b950cc31fef9540546210881f9a7ea1587b6a Mon Sep 17 00:00:00 2001 From: streetturtle Date: Mon, 8 Oct 2018 11:20:59 -0400 Subject: refactor cpu widget --- cpu-widget/cpu-widget.lua | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'cpu-widget') diff --git a/cpu-widget/cpu-widget.lua b/cpu-widget/cpu-widget.lua index f466d09..455ff58 100644 --- a/cpu-widget/cpu-widget.lua +++ b/cpu-widget/cpu-widget.lua @@ -10,10 +10,10 @@ local watch = require("awful.widget.watch") local wibox = require("wibox") +local beautiful = require("beautiful") local cpugraph_widget = wibox.widget { max_value = 100, - color = '#74aeab', background_color = "#00000000", forced_width = 50, step_width = 2, @@ -21,7 +21,7 @@ local cpugraph_widget = wibox.widget { 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 total_prev = 0 @@ -38,11 +38,8 @@ watch([[bash -c "cat /proc/stat | grep '^cpu '"]], 1, local diff_total = total - total_prev local diff_usage = (1000 * (diff_total - diff_idle) / diff_total + 5) / 10 - if diff_usage > 80 then - widget:set_color('#ff4136') - else - widget:set_color('#74aeab') - end + widget:set_color(diff_usage > 80 and beautiful.widget_red + or beautiful.widget_main_color) widget:add_value(diff_usage) -- cgit v1.2.3