From cb75956686ee8b20024a01cc3808e20a0bc3f7f8 Mon Sep 17 00:00:00 2001 From: stkhan Date: Sat, 11 Jun 2022 19:51:12 +0000 Subject: removed dwmblocks as submodule --- dwmblocks | 1 - dwmblocks/blocks.h | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) delete mode 160000 dwmblocks create mode 100644 dwmblocks/blocks.h (limited to 'dwmblocks/blocks.h') diff --git a/dwmblocks b/dwmblocks deleted file mode 160000 index a933ce0..0000000 --- a/dwmblocks +++ /dev/null @@ -1 +0,0 @@ -Subproject commit a933ce0d6109524b393feb3e7156cbf0de88b42c diff --git a/dwmblocks/blocks.h b/dwmblocks/blocks.h new file mode 100644 index 0000000..6b84963 --- /dev/null +++ b/dwmblocks/blocks.h @@ -0,0 +1,16 @@ +//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*/ + {"", "dwmblocks-forecast", 60, 10}, + {"", "dwmblocks-mpc", 2, 2}, + {"", "dwmblocks-brightness", 1, 1}, + {"", "dwmblocks-volume", 0, 10}, + {"", "dwmblocks-battery", 1, 0}, + {"🕗 ", "date '+%k:%M'", 1, 0}, + {"📅 ", "date '+%A, %B %d %G'", 1, 0}, +}; + +//sets delimeter between status commands. NULL character ('\0') means no delimeter. +static char delim[] = " | "; +static unsigned int delimLen = 5; -- cgit v1.2.3