feat(tablet mode): removing duplicate touchpad

This commit is contained in:
matt1432 2023-12-14 00:20:18 -05:00
parent 9b85490e24
commit 001192e28c
2 changed files with 1 additions and 5 deletions

View file

@ -58,8 +58,7 @@ class Tablet extends Service {
'--device', '/dev/input/by-path/platform-i8042-serio-1-event-mouse',
'--device', '/dev/input/by-path/platform-AMDI0010:02-event-mouse',
'--device', '/dev/input/by-path/platform-thinkpad_acpi-event',
'--device', '/dev/video-bus',
'--device', '/dev/touchpad'],
'--device', '/dev/video-bus'],
() => { /**/ },
(err) => logError(err));
this.emit('inputs-blocked', true);

View file

@ -96,9 +96,6 @@
udev.extraRules = ''
# give permanent path to keyboard XF86* binds
SUBSYSTEMS=="input", ATTRS{id/product}=="0006", ATTRS{id/vendor}=="0000", SYMLINK += "video-bus"
# give permanent path to touchpad
SUBSYSTEMS=="input", ATTRS{id/product}=="01e0", ATTRS{id/vendor}=="27c6", ATTRS{name}=="*Touchpad", SYMLINK += "touchpad"
'';
};
}