Make the CMD_slim command even slimmer.

Does not use pipe redirection, as a result the shell is not
required anymore.
This commit is contained in:
Florian Lindner 2021-09-15 10:04:18 +02:00
parent 3b24474de4
commit 6e7c1dc4be
1 changed files with 1 additions and 1 deletions

View File

@ -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'