====== Wacom Tablet for Linux ====== * [[https://linux.die.net/man/1/xsetwacom|xsetwacom(1) - Linux man page]] ===== Pen touch disable ===== * 펜이 타블랫에 닿으면 좌클릭이 된 상태로 드래그 모드로 작동하는게 기본임. * 이것을 펜이 타블렛에 닿으면 일반적인 마우스 움직임으로, 아래 버튼 클릭시 좌클릭, 위 버튼 클릭시 우클릭으로 변환 $ xsetwacom list Wacom Intuos BT S Pad pad id: 25 type: PAD Wacom Intuos BT S Pen stylus id: 26 type: STYLUS $ DEVICE_STYLUS='Wacom Intuos BT S Pen stylus' $ xsetwacom set "$DEVICE_STYLUS" Button 1 "button +0" # 터치해도 아무 클릭도 안하게 $ xsetwacom set "$DEVICE_STYLUS" Button 2 "button +1" # 좌클릭 $ xsetwacom set "$DEVICE_STYLUS" Button 3 "button +3" # 우클릭 * ''Button 1'' 은 사실은 버튼이 아니라 펜촉이 타블렛에 닿는 것을 의미한다. * 재부팅하면 초기화된다. * 자동 실행 스크립트로 만들어둔다. ===== 참조 ===== * [[https://askubuntu.com/questions/600390/wacom-intuos-disable-cursor-select-when-pen-makes-contact-with-tablet-cth480|14.04 - wacom intuos disable cursor select when pen makes contact with tablet (CTH480) - Ask Ubuntu]]