From b8995ced8fb0a4c48300190dfd610f7420aca795 Mon Sep 17 00:00:00 2001 From: Seth Barberee Date: Mon, 3 Jan 2022 17:23:23 -0800 Subject: [IPC] Add repeat delay/rate info to keyboard Closes #6735 wlroots already has the info in the struct so let's access it and print it out. --- sway/ipc-json.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sway/ipc-json.c') diff --git a/sway/ipc-json.c b/sway/ipc-json.c index 1b64f86e..8357ae04 100644 --- a/sway/ipc-json.c +++ b/sway/ipc-json.c @@ -980,6 +980,11 @@ json_object *ipc_json_describe_input(struct sway_input_device *device) { struct wlr_keyboard *keyboard = device->wlr_device->keyboard; struct xkb_keymap *keymap = keyboard->keymap; struct xkb_state *state = keyboard->xkb_state; + + json_object_object_add(object, "repeat_delay", + json_object_new_int(keyboard->repeat_info.delay)); + json_object_object_add(object, "repeat_rate", + json_object_new_int(keyboard->repeat_info.rate)); json_object *layouts_arr = json_object_new_array(); json_object_object_add(object, "xkb_layout_names", layouts_arr); -- cgit v1.2.3-54-g00ecf