summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2020-08-18 16:29:22 +0100
committerDavid T. Sadler <davidtsadler@googlemail.com>2020-08-18 16:29:22 +0100
commit683ec57ed05f2b6fd279a54860666583a2878a2f (patch)
treec81cb660f8b4b6176fccb5e91cf970bc62e04ac5
parent4e4178d214e766f7bb366fcb21e59b6ec2d59cb0 (diff)
Store custom configuration
-rw-r--r--blocks.h9
1 files changed, 9 insertions, 0 deletions
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;