From ae59c294bfd4b73f6e751a3103c2ee7501068492 Mon Sep 17 00:00:00 2001 From: Federico Angelilli Date: Fri, 20 Sep 2024 23:57:19 +0200 Subject: Start parsing effects --- src/config.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/config.h') diff --git a/src/config.h b/src/config.h index a7d196f..848cb16 100644 --- a/src/config.h +++ b/src/config.h @@ -8,6 +8,8 @@ typedef struct block block_t; +typedef struct effect_info effect_info_t; + typedef enum { CONFIG_STRING, CONFIG_INT, @@ -30,6 +32,8 @@ typedef struct { typedef struct { size_t n_blocks; block_t *blocks; + size_t n_infos; + effect_info_t *infos; char *font; char *monitor; bool override_redirect; -- cgit v1.2.3