aboutsummaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h
index a7d196f..4580031 100644
--- a/src/config.h
+++ b/src/config.h
@@ -8,6 +8,8 @@
typedef struct block block_t;
+typedef struct effect effect_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_effects;
+ effect_t *effects;
char *font;
char *monitor;
bool override_redirect;
@@ -40,7 +44,7 @@ typedef struct {
typedef struct {
const char *label;
- int value;
+ intptr_t value;
} config_enum_t;
void config_init(config_t *config);