New status bar

This commit is contained in:
2024-06-23 22:28:14 +01:00
parent 47fb72f23b
commit 27d10d20ad
57 changed files with 386 additions and 2941 deletions

View File

@@ -0,0 +1,15 @@
//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*/
{"", "sb-network", 10, 0},
{"", "sb-battery", 20, 0},
{"", "sb-volume", 0, 10},
{"", "sb-cpu", 5, 0},
{"", "sb-memory", 10, 0},
{"", "date '+%d/%m/%y (%a) %I:%M%p'", 60, 0},
};
//sets delimiter between status commands. NULL character ('\0') means no delimiter.
static char delim[] = " | ";
static unsigned int delimLen = 5;