Thanks for the explanation — that makes a lot of sense and aligns with what I’ve been experiencing. Here’s what I did to get everything working:
-
Updated to Fedora 41
-
Uninstalled OpenTabletDriver completely, including all its configurations:
First, I removed OpenTabletDriver using:
sudo dnf remove opentabletdriver
- Removed the systemd service for
OpenTabletDriver
:
- If you enabled the service at startup, you should disable it with:
systemctl --user disable opentabletdriver.service --now
Then, I deleted the service file:
rm ~/.config/systemd/user/opentabletdriver.service
- Cleaned up udev rules and ensured access to
/dev/uinput
was re-enabled for the tablet.
- Removed blacklisted kernel modules like
wacom
and hid_uclogic
:
I edited /etc/modprobe.d/
and removed any entries related to the Wacom tablet to ensure it loads with the correct driver.
- Installed the correct Xorg drivers:
- I installed the
xorg-x11-drv-wacom
package to ensure the Wacom tablet driver would work under Xorg:
sudo dnf install xorg-x11-drv-wacom
This package also provides a default xorg.conf
snippet that helps the drivers load with higher priority than libinput
.
- After rebooting, I confirmed the tablet’s settings with:
xinput list-props "Wacom Bamboo 16FG 4x5 Pen stylus"
- Finally, I checked the Xorg logs to make sure everything was set up properly:
cat ~/'.local/share/xorg/Xorg.'*'.log' | grep 'Using input driver'
The output showed:
[ 23.817] (II) Using input driver 'wacom' for 'Wacom Bamboo 16FG 4x5 Pen'
[ 23.869] (II) Using input driver 'libinput' for 'Wacom Bamboo 16FG 4x5 Finger'
[ 23.962] (II) Using input driver 'wacom' for 'Wacom Bamboo 16FG 4x5 Pad'
[ 24.045] (II) Using input driver 'wacom' for 'Wacom Bamboo 16FG 4x5 Pen eraser'Any suggestions on what I can try to get the same menu? Anyway, I can make the configurations through the terminal, right?
My current xinput
and xorg.log
outputs match yours: the Pen, Eraser, and Pad are using the wacom
driver, and the Finger input remains on libinput
. Why is this happening? Does it limit the customization options of the driver?
Edit: My settings panel is updated with the new drivers. Now looks like this:
Thanks for all the help!
I really appreciate it! Do you happen to have any useful terminal commands for customizing tablet settings more? Maybe some options that aren’t available in the settings panel? Would be great to have a more customizable UI for this kind of tablets, like the one in OpenTabletDriver. I’m not good at coding, but I would love to learn and make something like that one day to contribute to this wonderful project. Thanks again for all the support! 