From e911dd70958ba5a71e7f8a2cbc1d663df21200fd Mon Sep 17 00:00:00 2001 From: Alexander Rosenberg Date: Fri, 15 Sep 2023 15:05:07 -0700 Subject: [PATCH] Update blocks.def.h --- blocks.def.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/blocks.def.h b/blocks.def.h index 4fd26f3..ddf333b 100644 --- a/blocks.def.h +++ b/blocks.def.h @@ -10,6 +10,12 @@ static const Block blocks[] = { {"", "dwmblocks-network", SECONDS(5), 0}, }; +#include "pulse-listener.h" + +static const ThreadCallback thread_callbacks[] = { + pulse_listener_main +}; + // sets delimeter between status commands. NULL character ('\0') means no delimeter. static char delim[] = " "; static unsigned int delimLen = 5;