dwmblocks

My build of dwmblocks.
git clone git://git.alex.balgavy.eu/dwmblocks.git
Log | Files | Refs | README | LICENSE

commit 8824e6e677d40a932f8a52c38dd803b63aeb3004
parent 70dcba8ff1cbedeb5db088682af58a17def97a69
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Wed,  5 May 2021 18:03:14 +0200

Add CPU block, fix signals

Diffstat:
Mblocks.h | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/blocks.h b/blocks.h @@ -1,9 +1,10 @@ //Modify this file to change what commands output to your statusbar, and recompile using the make command. static const Block blocks[] = { /*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/ - {"", "dwmblock-battery", 5, 3}, - {"☀ ", "dwmblock-brightness", 0, 1}, - {"", "date '+%b %d (%a) %I:%M%p'", 60, 0}, + {"", "dwmblock-battery", 5, 1}, + {"", "dwmblock-cpu", 10, 2 }, + {"☀ ", "dwmblock-brightness", 0, 3}, + {"", "date '+%b %d (%a) %I:%M%p'", 60, 4}, }; //sets delimeter between status commands. NULL character ('\0') means no delimeter.