From 3a9f800ce78de82e8471b1d785d488b3b071c807 Mon Sep 17 00:00:00 2001 From: Guilherme Rugai Freire <41879254+GRFreire@users.noreply.github.com> Date: Fri, 13 Aug 2021 15:46:00 -0300 Subject: [PATCH] qtile: add cpu and memory widget to aux monitor --- .config/qtile/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 01dbda0..a03ded0 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -316,6 +316,8 @@ def aux_bar(): foreground=colors["background"], ), widget.WindowName(), + widget.Memory(format='Memory {MemPercent}%'), + widget.CPU(format='CPU {load_percent}%'), ] )