summaryrefslogtreecommitdiffstats
path: root/sway/ipc-server.c
diff options
context:
space:
mode:
authorLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2015-12-15 14:05:42 +0100
committerLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2015-12-15 15:02:13 +0100
commit6834a33290e7cf9466a3671cb00d3d7b08f68ca7 (patch)
tree45aa2beec058d40c2c8c08e14ad5c466e5027be2 /sway/ipc-server.c
parentImplement IPC_GET_BAR_CONFIG (diff)
downloadsway-6834a33290e7cf9466a3671cb00d3d7b08f68ca7.tar.gz
sway-6834a33290e7cf9466a3671cb00d3d7b08f68ca7.tar.zst
sway-6834a33290e7cf9466a3671cb00d3d7b08f68ca7.zip
Add bar height option (Airblader/i3)
Diffstat (limited to 'sway/ipc-server.c')
-rw-r--r--sway/ipc-server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/ipc-server.c b/sway/ipc-server.c
index 727f06da..60b61d74 100644
--- a/sway/ipc-server.c
+++ b/sway/ipc-server.c
@@ -419,7 +419,7 @@ void ipc_client_handle_command(struct ipc_client *client) {
419 } 419 }
420 json_object_object_add(json, "status_command", json_object_new_string(bar->status_command)); 420 json_object_object_add(json, "status_command", json_object_new_string(bar->status_command));
421 json_object_object_add(json, "font", json_object_new_string(bar->font)); 421 json_object_object_add(json, "font", json_object_new_string(bar->font));
422 json_object_object_add(json, "bar_height", json_object_new_int(bar->bar_height)); 422 json_object_object_add(json, "bar_height", json_object_new_int(bar->height));
423 json_object_object_add(json, "workspace_buttons", json_object_new_boolean(bar->workspace_buttons)); 423 json_object_object_add(json, "workspace_buttons", json_object_new_boolean(bar->workspace_buttons));
424 json_object_object_add(json, "strip_workspace_numbers", json_object_new_boolean(bar->strip_workspace_numbers)); 424 json_object_object_add(json, "strip_workspace_numbers", json_object_new_boolean(bar->strip_workspace_numbers));
425 json_object_object_add(json, "binding_mode_indicator", json_object_new_boolean(bar->binding_mode_indicator)); 425 json_object_object_add(json, "binding_mode_indicator", json_object_new_boolean(bar->binding_mode_indicator));