summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlucashemi <gghuebur@gmail.com>2022-09-13 00:42:44 -0300
committerlucashemi <gghuebur@gmail.com>2022-09-13 00:42:44 -0300
commit0810572bd157391c72e20f6f915ce9205fd8c021 (patch)
tree9da231cc32db721497a2a4ff658d01d0259b94d5
parenta933ce0d6109524b393feb3e7156cbf0de88b42c (diff)
First commit
-rw-r--r--blocks.def.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/blocks.def.h b/blocks.def.h
index 9c22d68..b8d0495 100644
--- a/blocks.def.h
+++ b/blocks.def.h
@@ -1,11 +1,15 @@
//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*/
- {"Mem:", "free -h | awk '/^Mem/ { print $3\"/\"$2 }' | sed s/i//g", 30, 0},
-
- {"", "date '+%b %d (%a) %I:%M%p'", 5, 0},
+ {"", "forecast", 18000, 5},
+ {"", "volume", 0, 10},
+ {"", "cpu", 10, 18},
+ /*{"", "battery", 5, 3},*/
+ {"", "internet", 5, 4},
+ {"", "kbselect", 0, 30},
+ {"", "clock", 60, 1},
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
-static char delim[] = " | ";
+static char delim[] = "";
static unsigned int delimLen = 5;