diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-10-22 11:38:30 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-11-11 09:09:17 -0500 |
commit | 0f45fad18cf56910aa339c7c6ad1a661e96cfb0d (patch) | |
tree | 1ecf1d65177844ec0dc9ed3e1a8b55382e648be0 /sway/ipc-server.c | |
parent | 7414d9232751d378ff2840b7fb45e711b7f69477 (diff) |
Establish sway input submodule
Diffstat (limited to 'sway/ipc-server.c')
-rw-r--r-- | sway/ipc-server.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/ipc-server.c b/sway/ipc-server.c index 9ba736d8..d4db4e7a 100644 --- a/sway/ipc-server.c +++ b/sway/ipc-server.c @@ -476,12 +476,14 @@ void ipc_client_handle_command(struct ipc_client *client) { goto exit_denied; } json_object *inputs = json_object_new_array(); + /* TODO WLR if (input_devices) { for(int i = 0; i<input_devices->length; i++) { struct libinput_device *device = input_devices->items[i]; json_object_array_add(inputs, ipc_json_describe_input(device)); } } + */ const char *json_string = json_object_to_json_string(inputs); ipc_send_reply(client, json_string, (uint32_t) strlen(json_string)); json_object_put(inputs); |