feat(tablet mode): removing duplicate touchpad
This commit is contained in:
parent
9b85490e24
commit
001192e28c
2 changed files with 1 additions and 5 deletions
|
@ -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-i8042-serio-1-event-mouse',
|
||||||
'--device', '/dev/input/by-path/platform-AMDI0010:02-event-mouse',
|
'--device', '/dev/input/by-path/platform-AMDI0010:02-event-mouse',
|
||||||
'--device', '/dev/input/by-path/platform-thinkpad_acpi-event',
|
'--device', '/dev/input/by-path/platform-thinkpad_acpi-event',
|
||||||
'--device', '/dev/video-bus',
|
'--device', '/dev/video-bus'],
|
||||||
'--device', '/dev/touchpad'],
|
|
||||||
() => { /**/ },
|
() => { /**/ },
|
||||||
(err) => logError(err));
|
(err) => logError(err));
|
||||||
this.emit('inputs-blocked', true);
|
this.emit('inputs-blocked', true);
|
||||||
|
|
|
@ -96,9 +96,6 @@
|
||||||
udev.extraRules = ''
|
udev.extraRules = ''
|
||||||
# give permanent path to keyboard XF86* binds
|
# give permanent path to keyboard XF86* binds
|
||||||
SUBSYSTEMS=="input", ATTRS{id/product}=="0006", ATTRS{id/vendor}=="0000", SYMLINK += "video-bus"
|
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"
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue