将 Wacom Intuos 映射到一个显示器

将 Wacom Intuos 映射到一个显示器

我在将 Wacom 数位板映射到三个显示器之一时遇到了一些麻烦。

我尝试了以下操作xsetwacom -v set "Wacom Intuos S 2 Pad pad" MapToOutput DP1-2。我得到了以下输出:

... Display is '(null)'.
... 'set' requested for 'Wacom Intuos S 2 Pad pad'.
... Checking device 'Virtual core pointer' (2).
... Checking device 'Virtual core keyboard' (3).
... Checking device 'Virtual core XTEST pointer' (4).
... Checking device 'Virtual core XTEST keyboard' (5).
... Checking device 'Power Button' (6).
... Checking device 'Video Bus' (7).
... Checking device 'Power Button' (8).
... Checking device 'Sleep Button' (9).
... Checking device 'PixArt Dell MS116 USB Optical Mouse' (10).
... Checking device 'Dell Dell USB Entry Keyboard' (11).
... Checking device 'AT Translated Set 2 keyboard' (12).
... Checking device 'ImPS/2 Generic Wheel Mouse' (13).
... Checking device 'DELL Wireless hotkeys' (14).
... Checking device 'Dell WMI hotkeys' (15).
... Checking device 'Wacom Intuos S 2 Pen stylus' (16).
... Checking device 'Wacom Intuos S 2 Pad pad' (17).
... Device 'Wacom Intuos S 2 Pad pad' (17) found.
... Found output 'eDP1' (connected)
... CRTC (5120x0) 1920x1080
... Found output 'DP1' (disconnnected)
... Found output 'DP1-1' (connected)
... CRTC (0x0) 2560x1440
... Setting CRTC DP1-1
... Remapping to output area 2560x1440 @ 0,0.
... Transformation matrix:
...     [ 0.363636 0.000000 0.000000 ]
...     [ 0.000000 1.000000 0.000000 ]
...     [ 0.000000 0.000000 1.000000 ]

我认为这似乎有效,对吗?

但什么也没有发生,Intous Pad 仍然映射到所有三个显示器。

答案1

您想要映射“Pen Stylus”(例如“Wacom Intuos S 2 Pen Stylus”)而不是“Pad pad”:

$ xsetwacom --list
Wacom Intuos S 2 Pen stylus         id: 12  type: STYLUS    <--- This one
Wacom Intuos S 2 Pad pad            id: 13  type: PAD

对于其他可能发现此问题的人,您可以从“xrandr”命令中获取显示器的名称(上面的 DP1-2)。

更多信息:http://linuxwacom.sourceforge.net/wiki/index.php/Xsetwacom

相关内容