From ed0355ba8ac1661b2f07f88170fe8f384b8ab12e Mon Sep 17 00:00:00 2001 From: Madeleine <32415621+SpyHoodle@users.noreply.github.com> Date: Sat, 8 Jan 2022 17:08:21 +0000 Subject: [PATCH] Delete blocks.h --- blocks.h | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 blocks.h diff --git a/blocks.h b/blocks.h deleted file mode 100644 index f86be82..0000000 --- a/blocks.h +++ /dev/null @@ -1,14 +0,0 @@ -//Modify this file to change what commands output to your statusbar, and recompile using the make command. -static const Block blocks[] = { - /*Icon*/ /*Command*/ /*Interval*/ /*Signal*/ - {"", "~/dwmblocks/scripts/sb-memory", 1, 14}, - {"", "~/dwmblocks/scripts/sb-cpu", 1, 18}, - {"", "~/dwmblocks/scripts/sb-disk", 30, 0}, - {"", "~/dwmblocks/scripts/sb-volume", 0, 10}, - {"", "~/dwmblocks/scripts/sb-forecast", 36000, 5}, - {"", "~/dwmblocks/scripts/sb-clock", 1, 0}, -}; - -//sets delimeter between status commands. NULL character ('\0') means no delimeter. -static char delim[] = " | "; -static unsigned int delimLen = 3;