diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-04-24 17:58:53 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2016-04-24 17:58:53 -0400 |
commit | 7efa9ab34ae1dabcc7c87d22bfba0b1312c8c662 (patch) | |
tree | 2364d4662a641f368d83494aa03b6b0879e97ca8 /sway/ipc-server.c | |
parent | a796ce4f667575d4f5c663c9baa817f8c0842f6e (diff) | |
parent | 09d69f606a49d784ae3c11c927d1bfbba77b1f55 (diff) | |
download | sway-7efa9ab34ae1dabcc7c87d22bfba0b1312c8c662.tar.xz |
Merge pull request #601 from Hummer12007/pango_markup_config
Pango markup config
Diffstat (limited to 'sway/ipc-server.c')
-rw-r--r-- | sway/ipc-server.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/ipc-server.c b/sway/ipc-server.c index f6116921..4d9264e8 100644 --- a/sway/ipc-server.c +++ b/sway/ipc-server.c @@ -600,6 +600,7 @@ json_object *ipc_json_describe_bar_config(struct bar_config *bar) { json_object_object_add(json, "strip_workspace_numbers", json_object_new_boolean(bar->strip_workspace_numbers)); json_object_object_add(json, "binding_mode_indicator", json_object_new_boolean(bar->binding_mode_indicator)); json_object_object_add(json, "verbose", json_object_new_boolean(bar->verbose)); + json_object_object_add(json, "pango_markup", json_object_new_boolean(bar->pango_markup)); json_object *colors = json_object_new_object(); json_object_object_add(colors, "background", json_object_new_string(bar->colors.background)); |