From 683ec57ed05f2b6fd279a54860666583a2878a2f Mon Sep 17 00:00:00 2001 From: "David T. Sadler" Date: Tue, 18 Aug 2020 16:29:22 +0100 Subject: Store custom configuration --- blocks.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 blocks.h diff --git a/blocks.h b/blocks.h new file mode 100644 index 0000000..7a5a32f --- /dev/null +++ b/blocks.h @@ -0,0 +1,9 @@ +//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*/ + {"", "date '+%b %d (%a) %I:%M%p'", 5, 0}, +}; + +//sets delimeter between status commands. NULL character ('\0') means no delimeter. +static char delim[] = " | "; +static unsigned int delimLen = 5; -- cgit v1.2.3-13-gbd6f