From 6e7c1dc4be830038c1371797169b8cded107e535 Mon Sep 17 00:00:00 2001 From: Florian Lindner Date: Wed, 15 Sep 2021 10:04:18 +0200 Subject: Make the CMD_slim command even slimmer. Does not use pipe redirection, as a result the shell is not required anymore. --- 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 c8b90c8..11debe8 100644 --- a/cpu-widget/cpu-widget.lua +++ b/cpu-widget/cpu-widget.lua @@ -18,7 +18,7 @@ local CMD = [[sh -c "grep '^cpu.' /proc/stat; ps -eo '%p|%c|%C|' -o "%mem" -o '| .. [[| head -11 | tail -n +2"]] -- A smaller command, less resource intensive, used when popup is not shown. -local CMD_slim = [[sh -c "grep '^cpu.' /proc/stat | head -n 1" ]] +local CMD_slim = [[grep --max-count=1 '^cpu.' /proc/stat]] local HOME_DIR = os.getenv("HOME") local WIDGET_DIR = HOME_DIR .. '/.config/awesome/awesome-wm-widgets/cpu-widget' -- cgit v1.2.3