aboutsummaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
authorFederico Angelilli <code@fedang.net>2024-11-24 19:39:19 +0100
committerFederico Angelilli <code@fedang.net>2024-11-24 19:39:19 +0100
commitdef1e18d86579cf77649d1b8aa596d0877b822bb (patch)
tree0e6deebdef1575b4b74472bc4367b294f7551753 /src/config.h
parent76ad6b0d404d40f08b73d90ac5f66564c29feb95 (diff)
Refactor block_change_fn
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/config.h b/src/config.h
index e56de55..e4bc2d6 100644
--- a/src/config.h
+++ b/src/config.h
@@ -44,6 +44,9 @@ typedef struct {
char *font;
char *monitor;
bool override_redirect;
+ bool action_strict_run;
+ bool action_strict_set;
+ bool action_failfast;
gradient_t background;
unsigned int width;
unsigned int height;
@@ -55,16 +58,6 @@ typedef struct {
int value;
} config_enum_t;
-extern config_enum_t text_align_enum[];
-
-extern const config_entry_t bar_entries[];
-
-extern const config_entry_t block_entries[];
-
-extern const config_entry_t block_group_entries[];
-
-extern const config_entry_t block_text_entries[];
-
const char *config_type_to_string(config_type_t type);
void config_init(config_t *config);