aboutsummaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h
index dd1bf1f..e005dff 100644
--- a/src/config.h
+++ b/src/config.h
@@ -8,6 +8,8 @@
typedef struct block block_t;
+typedef struct action action_t;
+
typedef enum {
CONFIG_STRING,
CONFIG_INT,
@@ -31,6 +33,8 @@ typedef struct {
typedef struct {
size_t n_blocks;
block_t **blocks;
+ size_t n_actions;
+ action_t *actions;
char *font;
char *monitor;
bool override_redirect;