Skip to content

Instantly share code, notes, and snippets.

@igavrysh
Created September 10, 2023 03:50
Show Gist options
  • Save igavrysh/79a7c04c0025fd23c29f39de4d192510 to your computer and use it in GitHub Desktop.
Save igavrysh/79a7c04c0025fd23c29f39de4d192510 to your computer and use it in GitHub Desktop.
ibm trackpoint keyboard rt3200 - setup for ubuntu (kde neon)
# instructions are taken from https://chrisirwin.ca/posts/ps2-trackpoint-scrolling-wayland/
# usb adapter and producer info
lsusb | grep 13ba
# finding device ids
sudo libinput list-devices | grep Device
# create udev rule
$ sudo tee /etc/udev/rules.d/70-ps2-pointingstick.rules <<EOF
# Detect PS/2 Mouse as a pointingstick (Trackpoint)
ACTION=="add|change", ENV{ID_VENDOR_ID}=="13ba", ATTRS{name}=="*Mouse*", ENV{ID_INPUT_POINTINGSTICK}="1"
EOF
# to trigger udev to reload the rules + unplug / plug the keyboard
$ sudo udevadm control --reload-rules
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment