Add blocks.h

This commit is contained in:
swindlesmccoop 2022-07-24 05:11:39 -04:00
parent a903683184
commit 036a340f37
2 changed files with 16 additions and 3 deletions

3
.gitignore vendored
View File

@ -1,6 +1,3 @@
# Custom blocks file
blocks.h
# Prerequisites
*.d

16
blocks.h Normal file
View File

@ -0,0 +1,16 @@
//Modify this file to change what commands output to your statusbar, and recompile using the make command.
static const Block blocks[] = {
// Label Command Int SIG
{"CPU: ", "sb-cpuusage", 1, 0},
{"Vol: ", "sb-volume", 1, 0},
{"Mem: ", "sb-memory", 1, 0},
{"Temp: ", "sb-cputemp -f", 1, 0},
//{"IP: ", "sb-network", 1, 0},
{"Bat: ", "sb-battery", 60, 0},
{"", "date '+%b %d, %H:%M'", 1, 0},
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
static char delim[] = " | ";
static unsigned int delimLen = 5;