From f1a8c401b902f45dd558b43f9923c9970ca37a92 Mon Sep 17 00:00:00 2001 From: krolyxon Date: Tue, 21 Mar 2023 21:42:34 +0530 Subject: initial commit --- config.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 config.h (limited to 'config.h') 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; -- cgit v1.2.3