web-dev-qa-db-ja.com

Wacom Intuosを1つのモニターにマップする

Wacom Tabletを3つのディスプレイのいずれかにマッピングするのに問題があります。

私は次の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 ]

私はこれがうまくいくように思えます、私は正しいですか?

しかし、何も起こりません。IntousPadはまだ3つすべてのディスプレイにマップされています。

1
Ventu

「パッド」ではなく、「ペンスタイラス」(例:「Wacom Intuos S 2ペンスタイラス」)をマップします。

$ 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

1
Aaron Skomra