aboutsummaryrefslogtreecommitdiff
path: root/sway/ipc-server.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2016-01-19 10:08:44 -0500
committerDrew DeVault <sir@cmpwn.com>2016-01-19 10:08:44 -0500
commitb72a62b02b601d98ca89919f42e7ddec4e8ab2b2 (patch)
tree6b7412f626f5d9f10dba8920a2543dfd3c5a662e /sway/ipc-server.c
parentfe241126bb8d696d45dd30fc975da022f79c9928 (diff)
parent28081b76891ddbbb825dee6c202037d78aa8f164 (diff)
downloadsway-b72a62b02b601d98ca89919f42e7ddec4e8ab2b2.tar.xz
Merge pull request #448 from colemickens/libinput
libinput configuration
Diffstat (limited to 'sway/ipc-server.c')
-rw-r--r--sway/ipc-server.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/sway/ipc-server.c b/sway/ipc-server.c
index 8d92b919..58a291cd 100644
--- a/sway/ipc-server.c
+++ b/sway/ipc-server.c
@@ -13,6 +13,7 @@
#include <ctype.h>
#include <json-c/json.h>
#include <list.h>
+#include <libinput.h>
#include "ipc-server.h"
#include "log.h"
#include "config.h"
@@ -20,6 +21,7 @@
#include "list.h"
#include "stringop.h"
#include "util.h"
+#include "input.h"
static int ipc_socket = -1;
static struct wlc_event_source *ipc_event_source = NULL;
@@ -325,6 +327,24 @@ void ipc_client_handle_command(struct ipc_client *client) {
json_object_put(workspaces); // free
break;
}
+ case IPC_GET_INPUTS:
+ {
+ json_object *inputs = json_object_new_array();
+ if (input_devices) {
+ for(int i=0; i<input_devices->length; i++) {
+ struct libinput_device *device = input_devices->items[i];
+ char* identifier = libinput_dev_unique_id(device);
+ json_object *device_object = json_object_new_object();
+ json_object_object_add(device_object, "identifier", json_object_new_string(identifier));
+ json_object_array_add(inputs, device_object);
+ free(identifier);
+ }
+ }
+ 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);
+ break;
+ }
case IPC_GET_OUTPUTS:
{
json_object *outputs = json_object_new_array();