diff options
author | Benjamin Cheng <ben@bcheng.cf> | 2019-03-12 13:17:47 -0400 |
---|---|---|
committer | Brian Ashworth <bosrsf04@gmail.com> | 2019-04-14 19:31:36 -0400 |
commit | 6737b90cb93d0231bbbc6045adf8a2443bc4e21c (patch) | |
tree | 1b9c4f75ec160e85a2ffe9018c3564f105bd6678 /swaymsg | |
parent | 6961bf2e4ce2c116e41a8db158691f6c993707ce (diff) |
Add heuristics to differentiate touchpads
Use libinput_device_config_tap_get_finger_count to determine whether
a pointer is a touchpad.
swaymsg is also updated to reflect the new touchpad type.
Diffstat (limited to 'swaymsg')
-rw-r--r-- | swaymsg/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/swaymsg/main.c b/swaymsg/main.c index f86000a4..e2c43445 100644 --- a/swaymsg/main.c +++ b/swaymsg/main.c @@ -98,6 +98,7 @@ static const char *pretty_type_name(const char *name) { } type_names[] = { { "keyboard", "Keyboard" }, { "pointer", "Mouse" }, + { "touchpad", "Touchpad" }, { "tablet_pad", "Tablet pad" }, { "tablet_tool", "Tablet tool" }, { "touch", "Touch" }, |