summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
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;