TOOL » LINUX » APP

Wacom

Install

shell
sudo pacman -S xf86-input-wacom

Configuration

These are the steps for a persistent configuration.

First find out the product names with the following command:

shell
grep "Using input driver 'wacom'" /var/log/Xorg.0.log

Then configure the desired devices on /etc/X11/xorg.conf.d/72-wacom-options.conf.

Available options can be checked here.

ini
Section "InputClass"
  Identifier "WACOM Pen stylus"
  MatchDriver "wacom"
  MatchProduct "Pen"
  NoMatchProduct "eraser"
  Option "Type" "stylus"
  Option "TopX" "2280"
  Option "TopY" "1425"
  Option "BottomX" "12920"
  Option "BottomY" "8075"
EndSection

Tool

Any configuration using these steps is temporary and will be reset on reboot.

shell
xsetwacom COMMAND
CommandDescription
list devicesDisplay detected devices.
set 'device name' parameter VALUESSet device parameter
get 'device name' allGet device parameters

Example

shell
xsetwacom set 'Wacom Intuos S Pen stylus' Area 2280 1425 12920 8075
xsetwacom get 'Wacom Intuos S Pen stylus' all