aboutsummaryrefslogtreecommitdiff
path: root/src/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.c')
-rw-r--r--src/config.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c
index c8f53f9..6d671b9 100644
--- a/src/config.c
+++ b/src/config.c
@@ -27,6 +27,9 @@ const config_entry_t bar_entries[] = {
{ "font", CONFIG_STRING, NULL, offsetof(config_t, font) },
{ "monitor", CONFIG_STRING, NULL, offsetof(config_t, monitor) },
{ "override-redirect", CONFIG_BOOL, NULL, offsetof(config_t, override_redirect) },
+ { "action-strict-run", CONFIG_BOOL, NULL, offsetof(config_t, action_strict_run) },
+ { "action-strict-set", CONFIG_BOOL, NULL, offsetof(config_t, action_strict_set) },
+ { "action-fail-fast", CONFIG_BOOL, NULL, offsetof(config_t, action_failfast) },
{ "background", CONFIG_GRADIENT, NULL, offsetof(config_t, background) },
{ "scale", CONFIG_DOUBLE, NULL, offsetof(config_t, scale) },
{ 0 },