Add blocks.h
This commit is contained in:
parent
a903683184
commit
036a340f37
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,6 +1,3 @@
|
||||
# Custom blocks file
|
||||
blocks.h
|
||||
|
||||
# Prerequisites
|
||||
*.d
|
||||
|
||||
|
16
blocks.h
Normal file
16
blocks.h
Normal 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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user