summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorkrolyxon <krolyxon@tutanota.com>2023-03-21 21:42:34 +0530
committerkrolyxon <krolyxon@tutanota.com>2023-03-21 21:42:34 +0530
commitf1a8c401b902f45dd558b43f9923c9970ca37a92 (patch)
tree0a82aea4e0748a404c0403977421387187198f38 /config.h
initial commit
Diffstat (limited to 'config.h')
-rw-r--r--config.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..b8c17ce
--- /dev/null
+++ b/config.h
@@ -0,0 +1,17 @@
+//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-volume", 10, 10},
+
+ {"", "sb-memory", 5, 14},
+ // {"Mem:", "free -h | awk '/^Mem/ { print $3\"/\"$2 }' | sed s/i//g", 30, 0},
+
+ {"", "sb-clock", 60, 1},
+
+
+};
+
+//sets delimeter between status commands. NULL character ('\0') means no delimeter.
+static char delim[] = " ";
+static unsigned int delimLen = 5;