qtile: add cpu and memory widget to aux monitor

This commit is contained in:
Guilherme Rugai Freire 2021-08-13 15:46:00 -03:00
parent 4b39928e24
commit 3a9f800ce7
No known key found for this signature in database
GPG Key ID: 0F9FE41723A8A297

View File

@ -316,6 +316,8 @@ def aux_bar():
foreground=colors["background"], foreground=colors["background"],
), ),
widget.WindowName(), widget.WindowName(),
widget.Memory(format='Memory {MemPercent}%'),
widget.CPU(format='CPU {load_percent}%'),
] ]
) )