Last active
April 14, 2021 18:09
-
-
Save AnotherKamila/c14c3ebd66ac6a25c0193f8e103e66e3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Put me into /usr/local/etc/X11/xorg.conf.d/ | |
# Replace XXX by the appropriate device: | |
# guess from `sudo libinput list-devices` (TODO I should write more precise instructions) | |
Section "ServerLayout" | |
Identifier ":-(" | |
InputDevice "Trackpoint0" "CorePointer" | |
InputDevice "Touchpad0" "CorePointer" | |
EndSection | |
Section "InputDevice" | |
Identifier "Touchpad0" | |
Driver "libinput" | |
Option "Device" "/dev/input/event6" | |
Option "DisableWhileTyping" "on" | |
Option "ScrollMethod" "twofinger" | |
Option "Tapping" "on" | |
Option "TappingButtonMap" "lrm" | |
Option "ClickMethod" "clickfinger" | |
EndSection | |
Section "InputDevice" | |
Identifier "Trackpoint0" | |
Driver "libinput" | |
Option "Device" "/dev/input/event3" | |
EndSection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Any news regarding this issue? I upgraded my Thinkpad X1 Carbon to
FreeBSD 13.0-RELEASE and experience the same issue. I have applied
the suggested workaround for now. Do you know if this issue has been
reported as a bug?