하드웨어/pen tablet
ubuntu에서 wacom 활성영역 설정하기
구차니
2025. 8. 28. 17:55
테스트는 해봐야겠다.
I do not think that there is a graphical configuration interface. Nevertheless, you can do it via scripts... Find the correct name of your device/input: [romano:~/personal/varios] 1 % xsetwacom --list devices Wacom Intuos PT S Finger touch id: 12 type: TOUCH Wacom Intuos PT S Finger pad id: 13 type: PAD Wacom Intuos PT S Pen stylus id: 14 type: STYLUS Wacom Intuos PT S Pen eraser id: 15 type: ERASER And now you can reduce for example to the top left corner: xsetwacom --set "Wacom Intuos PT S Pen stylus" MapToOutput 500x400+0+0 or in a rectangle in the center (more or less): xsetwacom --set "Wacom Intuos PT S Pen stylus" MapToOutput 500x400+500+500 Go back by telling the full resolution: xsetwacom --set "Wacom Intuos PT S Pen stylus" MapToOutput 1980x1080+0+0 There is a way to make the thing permanent, but I never tried it --- if you need it, the Arch page (as ever) is full of interesting info. |
With MapToOutput you can specify a specific screen (e.g.: VGA) or screen size that can let you map the tablet area to two monitors. If what you need is to force proportions or reduce the tablet area, then you can use the xsetwacom parameter Area: $ xsetwacom list parameters | grep Area Area - Valid tablet area in device coordinates. ResetArea - Resets the bounding coordinates to default in tablet units. For example, in my Bamboo tablet, I first reset the area and get its original device coordinates: $ xsetwacom --set "Wacom Bamboo 2FG 4x5 Pen stylus" ResetArea $ xsetwacom --get "Wacom Bamboo 2FG 4x5 Pen stylus" Area 0 0 14720 9200 Then I set them to get a smaller tablet area (1/4th of the tablet area): $ xsetwacom --set "Wacom Bamboo 2FG 4x5 Pen stylus" Area 0 4600 7360 9200 so I can achieve that the bottom-left rectangle maps to the whole screen size. This way, I can reach that whole area with less hand movement. |
[링크 : https://askubuntu.com/questions/547990/how-to-configure-wacom-tablet-area-on-ubuntu-14-04]
+
2025.08.29
wayland 대신 x.org로 부팅하고 아래처럼 입력하니 좌상단에서 중앙까지의 영역만 사용하게 된다.
$ xsetwacom --list devices Wacom Intuos Pro M Pen stylus id: 9 type: STYLUS Wacom Intuos Pro M Pad pad id: 10 type: PAD Wacom Intuos Pro M Finger touch id: 11 type: TOUCH Wacom Intuos Pro M Pen eraser id: 24 type: ERASER Wacom Intuos Pro M Pen cursor id: 25 type: CURSOR $ xsetwacom --get "Wacom Intuos Pro M Pen stylus" Area 0 0 44704 27940 $ xsetwacom --set "Wacom Intuos Pro M Pen stylus" Area 0 0 22352 13970 $ xsetwacom --get "Wacom Intuos Pro M Pen stylus" Area 0 0 22352 13970 |
wayland 에서 하니 설정이 되지 않는다
$ xsetwacom --get "Wacom Intuos Pro M Pen stylus" Area Wayland devices found but this tool is incompatible with Wayland. See https://github.com/linuxwacom/xf86-input-wacom/wiki/Wayland $ xsetwacom --set "Wacom Intuos Pro M Pen stylus" Area 0 0 22352 13970 Wayland devices found but this tool is incompatible with Wayland. See https://github.com/linuxwacom/xf86-input-wacom/wiki/Wayland |