| |
| lwc:linux:dell_inspiron_13 [2020/11/26 19:33] – created John Harrison | lwc:linux:dell_inspiron_13 [2021/11/06 07:30] (current) – John Harrison |
|---|
| |
| <del>It seems the most reliable way to get the right-click to work with two fingers only is explained [[https://askubuntu.com/questions/602193/how-to-disable-right-click-on-the-touchpad|here]] and is the one referring to editing synaptics.conf. synclient doesn't seem to work. Having said that...seems like a had a note to do this:</del> | <del>It seems the most reliable way to get the right-click to work with two fingers only is explained [[https://askubuntu.com/questions/602193/how-to-disable-right-click-on-the-touchpad|here]] and is the one referring to editing synaptics.conf. synclient doesn't seem to work. Having said that...seems like a had a note to do this:</del> |
| | * <del>synclient RightButtonAreaLeft=1180</del> |
| <del>synclient RightButtonAreaLeft=1180</del> | * <del>synclient RightButtonAreaTop=1180</del> |
| | |
| <del>synclient RightButtonAreaTop=1180</del> | |
| | |
| | |
| \\ | |
| |
| update: did [[https://www.dell.com/support/article/us/en/04/sln308258/precision-xps-ubuntu-general-touchpad-mouse-issue-fix?lang=en|this]], then edited /usr/share/X11/xorg.conf.d/40-libinput.conf | update: did [[https://www.dell.com/support/article/us/en/04/sln308258/precision-xps-ubuntu-general-touchpad-mouse-issue-fix?lang=en|this]], then edited /usr/share/X11/xorg.conf.d/40-libinput.conf |
| | <code> |
| ''%% %%''''%%Section "InputClass" %%'' | Section "InputClass" |
| | Identifier "libinput touchpad catchall" |
| ''%% Identifier "libinput touchpad catchall" %%'' | MatchIsTouchpad "on |
| | MatchDevicePath "/dev/input/event*" |
| ''%% MatchIsTouchpad "on" %%'' | Option "Tapping" "False" |
| | Option "AccelProfile" "adaptive" |
| ''%% MatchDevicePath "/dev/input/event*" %%'' | Option "AccelSpeed" "0.3" |
| | Option "ClickMethod" "clickfinger" |
| ''%% Option "Tapping" "False" %%'' | Driver "libinput" |
| | EndSection |
| ''%% Option "AccelProfile" "adaptive" %%'' | </code> |
| | ===== Kubuntu 20.04 ===== |
| ''%% Option "AccelSpeed" "0.3" %%'' | * disable touchscreen: <code>xinput --disable $(xinput --list | grep -i 'touchscreen' | grep -o 'id=[0-9]*' | sed 's/id=//')</code> |
| | |
| ''%% Option "ClickMethod" "clickfinger" %%'' | |
| | |
| ''%% Driver "libinput" %%'' | |
| | |
| ''%% EndSection %%'' | |
| | |
| |