diff options
| author | Federico Angelilli <code@fedang.net> | 2024-11-24 15:14:05 +0100 |
|---|---|---|
| committer | Federico Angelilli <code@fedang.net> | 2024-11-24 15:14:05 +0100 |
| commit | ab8a774df0ebc88c4b16377547366b01134b041c (patch) | |
| tree | 0d34c311276c271e16fe9d8ef842fc960bda8334 /src/config.h | |
| parent | b260d5beb9fab0c39f18be677e70b35e988d3c1d (diff) | |
Add actions
Diffstat (limited to 'src/config.h')
| -rw-r--r-- | src/config.h | 4 |
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; |
