This commit is contained in:
2025-07-02 00:07:42 -07:00
commit e939efd86b
6 changed files with 285 additions and 0 deletions

15
blocks.def.h Normal file
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*/
{"", "st-rec", 0, 2},
{"", "st-vol", 0, 1},
{"", "st-temp", 5, 0},
{"", "st-mem", 5, 0},
{"", "st-power", 5, 0},
{"", "st-disk", 30, 0},
{"", "date +%m-%d-%Y' '%R:%S", 1 , 10},
};
//sets delimiter between status commands. NULL character ('\0') means no delimiter.
static char delim[] = " | ";
static unsigned int delimLen = 5;