diff options
| author | Marcel Screm <marcel@marcelscrem.com> | 2026-01-03 11:27:02 +0100 |
|---|---|---|
| committer | Marcel Screm <marcel@marcelscrem.com> | 2026-01-03 11:27:02 +0100 |
| commit | 407206e17ed004cab50c2db941dcea22ac4604ee (patch) | |
| tree | 84d3077b0a1ef4fe372695f08585285d846ddfd0 /blocks.h | |
| parent | 27d4f8989df221062710db337793496b2ed6a70c (diff) | |
Diffstat (limited to 'blocks.h')
| -rwxr-xr-x | blocks.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/blocks.h b/blocks.h new file mode 100755 index 0000000..92f9807 --- /dev/null +++ b/blocks.h @@ -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-music", 0, 11 }, + {"", "sb-audio", 0, 1}, + {"", "sb-brightness", 0, 2}, + {"", "sb-internet", 0, 2}, + {"", "sb-battery", 60, 0}, + {"", "sb-time", 10, 0}, +}; + +//sets delimiter between status commands. NULL character ('\0') means no delimiter. +static char delim[] = " "; +static unsigned int delimLen = 5; |
