[Bug 222609] x11-servers/xorg-server: Add UDEV option to support evdev devices autodetection

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Mon Feb 17 20:19:17 UTC 2020


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=222609

--- Comment #42 from Ulrich Spoerlein <uqs at FreeBSD.org> ---
THANK YOU!

I had the loader.conf already, so the only thing I added was this from your
tutorial. Too bad that this isn't properly autoconfigured, but oh well.

cat >/usr/local/etc/X11/xorg.conf.d/99-myinput.conf <<EOF
Section "InputClass"
  Identifier "libinput keyboard catchall"
  MatchIsKeyboard "on"
  MatchDevicePath "/dev/input/event*"
  Driver "libinput"
  Option "XkbRules" "evdev"
EndSection

Section "InputClass"
  Identifier "libinput touchpad catchall"
  MatchIsTouchpad "on"
  MatchDevicePath "/dev/input/event*"
  Driver "libinput"
  Option "MiddleEmulation" "on"
  Option "DisableWhileTyping" "off"
EndSection
EOF

I still have to fiddle with sensitivity and accel of the touchpad, as it's
quite slow, but I can work with this. Finally I have 2 finger vertical
scrolling that works and isn't all choppy and useless (sorry, moused(8)).

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-x11 mailing list