aboutsummaryrefslogtreecommitdiffstats
path: root/sway/ipc-json.c
diff options
context:
space:
mode:
authorLibravatar Connor E <38229097+c-edw@users.noreply.github.com>2018-11-17 16:11:28 +0000
committerLibravatar Connor E <38229097+c-edw@users.noreply.github.com>2018-11-17 16:11:28 +0000
commit4bd46fb079fb5a32ee6eb2b297de273b261a9c71 (patch)
tree81dfd95a863ae17de78a6c69a14dd5698c6de862 /sway/ipc-json.c
parentMerge pull request #3046 from tokyovigilante/relative-transform (diff)
downloadsway-4bd46fb079fb5a32ee6eb2b297de273b261a9c71.tar.gz
sway-4bd46fb079fb5a32ee6eb2b297de273b261a9c71.tar.zst
sway-4bd46fb079fb5a32ee6eb2b297de273b261a9c71.zip
Implement strip_workspace_name.
Diffstat (limited to 'sway/ipc-json.c')
-rw-r--r--sway/ipc-json.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c
index 4583558c..cf1b42a6 100644
--- a/sway/ipc-json.c
+++ b/sway/ipc-json.c
@@ -559,6 +559,8 @@ json_object *ipc_json_describe_bar_config(struct bar_config *bar) {
559 json_object_new_boolean(bar->workspace_buttons)); 559 json_object_new_boolean(bar->workspace_buttons));
560 json_object_object_add(json, "strip_workspace_numbers", 560 json_object_object_add(json, "strip_workspace_numbers",
561 json_object_new_boolean(bar->strip_workspace_numbers)); 561 json_object_new_boolean(bar->strip_workspace_numbers));
562 json_object_object_add(json, "strip_workspace_name",
563 json_object_new_boolean(bar->strip_workspace_name));
562 json_object_object_add(json, "binding_mode_indicator", 564 json_object_object_add(json, "binding_mode_indicator",
563 json_object_new_boolean(bar->binding_mode_indicator)); 565 json_object_new_boolean(bar->binding_mode_indicator));
564 json_object_object_add(json, "verbose", 566 json_object_object_add(json, "verbose",