summaryrefslogtreecommitdiff
path: root/tools/libinput-record.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/libinput-record.c')
-rw-r--r--tools/libinput-record.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/libinput-record.c b/tools/libinput-record.c
index 21954327..a71bdfe2 100644
--- a/tools/libinput-record.c
+++ b/tools/libinput-record.c
@@ -1124,7 +1124,9 @@ print_udev_properties(struct record_context *ctx, struct record_device *dev)
if (strneq(key, "ID_INPUT", 8) ||
strneq(key, "LIBINPUT", 8) ||
- strneq(key, "EV_ABS", 6)) {
+ strneq(key, "EV_ABS", 6) ||
+ strneq(key, "MOUSE_DPI", 9) ||
+ strneq(key, "POINTINGSTICK_", 14)) {
value = udev_list_entry_get_value(entry);
iprintf(ctx, "- %s=%s\n", key, value);
}