Skip to content
Ping Cheng edited this page Apr 21, 2024 · 21 revisions

How can I determine which environment I am running under (Xorg or Wayland)?

There are a few methods to help you determine if you are running a Wayland environment or an Xorg environment.

  • The environmental variable $XDG_SESSION_TYPE will let you know the basic type of your environment ($echo $XDG_SESSION_TYPE).
  • More specifically, the tool xiswayland can help you determine whether the X server in use is Xwayland. Please note, xiswayland has the optional flag "--verbose" available.

How do I change between Xorg and Wayland?

Many Linux-based login screens have a small settings icon in the bottom right corner for choosing your graphics environment.

What is libinput?

In Wayland enviroments, libinput provides the functionality previously provided by xf86-input-wacom. Please see Wayland for more information.

For those who want to configure the tablet/tools directly from libinput, please check out the Configuration options. The Troubleshooting page is also helpful, especially if you want to disable the touch function of your tablet. Below are a few rules that disable touch events for Wacom specific devices:

  1. ignore-wacom-touchpad.rules (ignore touch events of Intuos Pro Small)

ACTION!="remove", KERNEL=="event[0-9]*",
ENV{ID_VENDOR_ID}=="056a",
ENV{ID_MODEL_ID}=="0392",
ENV{ID_INPUT_TOUCHPAD}=="1"
ENV{LIBINPUT_IGNORE_DEVICE}="1"

  1. ignore-wacom-touchscreen.rules (ignore touch events for Cintiq Pro 16)

ACTION!="remove", KERNEL=="event[0-9]*",
ENV{ID_VENDOR_ID}=="056a",
ENV{ID_MODEL_ID}=="0353",
ENV{ID_INPUT_TOUCHSCREEN}=="1"
ENV{LIBINPUT_IGNORE_DEVICE}="1"

  1. ignore-all-wacom-touchpad.rules (ignore touch events for all opaque tablets)

ACTION!="remove", KERNEL=="event[0-9]*",
ENV{ID_VENDOR_ID}=="056a",
ENV{ID_INPUT_TOUCHPAD}=="1"
ENV{LIBINPUT_IGNORE_DEVICE}="1"

NOTE: The "==" means a test and "=" means an assignment. Please make your rules have the correct signs. Misuse of those two signs could disable your input devices!

Which devices are supported by xf86-input-wacom?

See the Device IDs page.

How do I configure my device?

See Building the driver and Configuring X

Are there any graphical configuration tools?

Both GNOME and KDE configuration GUIs are available. See Graphical Configuration Tools.

How do I calibrate my tablet or tablet PC?

See Calibration.

How do I customize my tablet or tablet PC settings?

See the Configuration Basics, xsetwacom and xorg.conf and xsetwacom Example Scripts.

How do I get a xsetwacom configuration to survive a hotplug event?

In order to have your tablet configuration, set by run-time xsetwacom commands, survive the use of a KVM switch or other hotplug event the Linux Wacom Project hosts wdaemon. This is an update by Peter Hutterer of the original ''wdaemon'' by Aristeu Rozanski. The original wdaemon is linked at the bottom of the section Linuxwacom Tablet Hotplugging. Wdaemon is different from other solutions, such as daemons that monitor DBus for hotplug events and reapply a xsetwacom script, in that it provides a permanent virtual kernel device that looks exactly like the physical tablet to userspace. In effect it virtually disables tablet hotplugging.

How do I get the special features of my stylus to work?

There are many different types of styli, mice, and pucks. All of them work to varying degrees, so if you are running into trouble, please send an email to the mailing lists.

You may want to try the latest xf86-input-wacom release to see if support for your device has been added. If you are using a build of the linuxwacom backports, try the highest release number. The latest release is likely to support more tools.

Note, tilt is only supported with protocol V tablets, which includes the Intuos series and Cintiq 21UX/20WSX/12WX/21UX2. Any other tablets don't have tilt, no matter if you have the tilt option in your xorg.conf or not.

How do I rotate the screen and/or stylus on my tablet pc?

See Tablet-PC-Configuration.

How do I set up my tablet with Dual or Multi-Monitors?

See Dual and Multi-Monitor Set Up.

I am left handed. How do I flip my tablet?

See ''Rotate'' in Xsetwacom and also Rotation.

Is hotplugging supported for my USB tablet?

Yes, but only for devices configured via Configuring-X. If you have your devices configured in the xorg.conf, you can work around this by switching virtual terminals after replugging your tablet. That is, press Ctrl + Alt + F1 together then release them (screen turns to console); and press Ctrl + Alt + F7 together then release them (screen returns back to normal). On some distributions (e.g. Fedora), the original X session runs on VT1, hence substitute the commands with Ctrl + Alt + F2 and Ctrl + Alt + F1.

My tablet isn't a Wacom. Will it still work?

The xf86-input-wacom driver does support some non-wacom tablets including those by Hanwang, N-Trig, and Waltop. For KYE and UC-Logic graphics tablet support and additional Waltop information see the [https://sourceforge.net/apps/mediawiki/digimend/index.php?title=DIGImend DIGI''mend'' project].

Where is wacomcpl (the Wacom Control Panel)?

Wacomcpl is not packaged with xf86-input-wacom and will not work with it. For an explanation see External-Applications#graphical-configuration-tools.

Who is responsible for this code?

You are. Linux Wacom is an open source project and driven by Linux users with Wacom tablets such as yourself. John Joganic took up the code in November of 2002 and created this project. The source code was written by at least two dozen individuals, most of them are not directly involved in the project any more. Ping Cheng has assumed the project administrator since 2003. You can help out by testing, reporting bugs, documentation on this wiki and of course by writing patches (see the mailing lists).

Clone this wiki locally