diff options
author | Jason Nader <[email protected]> | 2020-06-13 12:32:24 +0900 |
---|---|---|
committer | Brian Ashworth <[email protected]> | 2020-06-14 00:55:14 -0400 |
commit | 45859be03f14fa0506ab8518feaec5ddb157e318 (patch) | |
tree | e838990235ecf0a4f543999ea292c0c5167957df /sway/ipc-server.c | |
parent | f9361ae36c586d78db34307f538508ab0dd8f486 (diff) |
i3-compat: add GET_BINDING_STATE IPC command
Diffstat (limited to 'sway/ipc-server.c')
-rw-r--r-- | sway/ipc-server.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sway/ipc-server.c b/sway/ipc-server.c index bd9f40bc..62bdccb8 100644 --- a/sway/ipc-server.c +++ b/sway/ipc-server.c @@ -876,6 +876,16 @@ void ipc_client_handle_command(struct ipc_client *client, uint32_t payload_lengt goto exit_cleanup; } + case IPC_GET_BINDING_STATE: + { + json_object *current_mode = ipc_json_get_binding_mode(); + const char *json_string = json_object_to_json_string(current_mode); + ipc_send_reply(client, payload_type, json_string, + (uint32_t)strlen(json_string)); + json_object_put(current_mode); // free + goto exit_cleanup; + } + case IPC_GET_CONFIG: { json_object *json = json_object_new_object(); |