mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 03:17:46 +03:00
get_inputs: add libinput send events mode
Add `libinput_send_events` to the IPC output for `get_inputs` to allow scripting of mode changes.
This commit is contained in:
parent
55e1d599a2
commit
4dba42555f
2 changed files with 26 additions and 1 deletions
|
@ -113,7 +113,7 @@ static const char *pretty_type_name(const char *name) {
|
|||
}
|
||||
|
||||
static void pretty_print_input(json_object *i) {
|
||||
json_object *id, *name, *type, *product, *vendor, *kbdlayout;
|
||||
json_object *id, *name, *type, *product, *vendor, *kbdlayout, *events;
|
||||
json_object_object_get_ex(i, "identifier", &id);
|
||||
json_object_object_get_ex(i, "name", &name);
|
||||
json_object_object_get_ex(i, "type", &type);
|
||||
|
@ -139,6 +139,10 @@ static void pretty_print_input(json_object *i) {
|
|||
json_object_get_string(kbdlayout));
|
||||
}
|
||||
|
||||
if (json_object_object_get_ex(i, "libinput_send_events", &events)) {
|
||||
printf(" Libinput Send Events: %s\n", json_object_get_string(events));
|
||||
}
|
||||
|
||||
printf("\n");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue