diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-05-12 09:01:16 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-05-12 09:01:16 -0400 |
commit | 2da685e913432716f55cd537fd3d64f3fb3cc09a (patch) | |
tree | c986cca12ecdb3e3ac4d94d38205028788315889 /sway/ipc-server.c | |
parent | a2d7079b263290ccc7259a0d16749dbd0baae821 (diff) | |
parent | 51b0b25587d69593eb77e3337e3fa459c1024f5c (diff) | |
download | sway-2da685e913432716f55cd537fd3d64f3fb3cc09a.tar.xz |
Merge remote-tracking branch 'origin/master' into scdoc
Diffstat (limited to 'sway/ipc-server.c')
-rw-r--r-- | sway/ipc-server.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sway/ipc-server.c b/sway/ipc-server.c index 39d1d0a7..8734e8f8 100644 --- a/sway/ipc-server.c +++ b/sway/ipc-server.c @@ -546,6 +546,19 @@ void ipc_client_handle_command(struct ipc_client *client) { goto exit_cleanup; } + case IPC_GET_SEATS: + { + json_object *seats = json_object_new_array(); + struct sway_seat *seat = NULL; + wl_list_for_each(seat, &input_manager->seats, link) { + json_object_array_add(seats, ipc_json_describe_seat(seat)); + } + const char *json_string = json_object_to_json_string(seats); + ipc_send_reply(client, json_string, (uint32_t)strlen(json_string)); + json_object_put(seats); // free + goto exit_cleanup; + } + case IPC_GET_TREE: { json_object *tree = |