Created
September 10, 2023 03:50
-
-
Save igavrysh/79a7c04c0025fd23c29f39de4d192510 to your computer and use it in GitHub Desktop.
ibm trackpoint keyboard rt3200 - setup for ubuntu (kde neon)
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
# 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