💾 Archived View for thedaemons.space › bsd › wacom.gmi captured on 2021-12-05 at 23:47:19. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2021-11-30)
-=-=-=-=-=-=-
sudo cp /usr/local/etc/X11/xorg.conf.d/wacom.conf.sample /usr/local/etc/X11/xorg.conf.d/wacom.conf
kldstat devd
rc-service -i devd
sudo rc-update add devd
xsetwacom --list devices
sudo pkg install libwacom
sudo rc-update add wacom
sudo rc-service wacom restart
sudo service wacom start
dmesg
sudo cat /dev/input/event6
sudo pluma /usr/local/etc/X11/xorg.conf.d/wacom.conf &
Section "InputDevice"
Identifier "wacom stylus"
Driver "wacom"
Option "Type" "stylus"
Option "Device" "/dev/input/event7"
Option "AutoServerLayout" "true"
Option "rotate" "half"
EndSection
Section "InputDevice"
Identifier "wacom eraser"
Driver "wacom"
Option "Type" "eraser"
Option "Device" "/dev/input/event7"
Option "AutoServerLayout" "true"
EndSection
Section "InputDevice"
Identifier "wacom pad"
Driver "wacom"
Option "Type" "pad"
Option "Device" "/dev/input/event1"
Option "AutoServerLayout" "true"
EndSection