aboutsummaryrefslogtreecommitdiff
path: root/src/config_directives.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/config_directives.c')
-rw-r--r--src/config_directives.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/config_directives.c b/src/config_directives.c
index 9077fe98..81adf351 100644
--- a/src/config_directives.c
+++ b/src/config_directives.c
@@ -873,6 +873,11 @@ CFGFUN(bar_status_command, const char *command) {
current_bar->status_command = sstrdup(command);
}
+CFGFUN(bar_workspace_command, const char *command) {
+ FREE(current_bar->workspace_command);
+ current_bar->workspace_command = sstrdup(command);
+}
+
CFGFUN(bar_binding_mode_indicator, const char *value) {
current_bar->hide_binding_mode_indicator = !boolstr(value);
}