Revision [77]
This is an old revision of UbuntuUgee-M1000L made by ace on 2017-10-31 12:46:27.
Buttons on Ugee M1000L in Ubuntu
sudo mkdir /etc/X11/xorg.conf.d
sudo nano /etc/X11/xorg.conf.d/52-tablet.conf
Section "InputClass" Identifier "UC-Logic on wacom" #!!!! MatchIsTablet "on" MatchProduct "UC-LOGIC ugee-1000L" MatchDevicePath "/dev/input/event*" Driver "wacom" EndSection
reboot
xsetwacom --list
- UC-LOGIC ugee-1000L Pen stylus id: 11 type: STYLUS
- UC-LOGIC ugee-1000L Pad pad id: 12 type: PAD
#!/bin/bash MONITOR="HDMI-1" ID_STYLUS=`xinput | grep "Pen stylus" | cut -f 2 | cut -c 4-5` if [[ $ID_STYLUS == "" ]] then echo "No Tablet Found" exit else #echo $ID_STYLUS xinput map-to-output $ID_STYLUS $MONITOR fi xsetwacom --set "UC-LOGIC ugee-1000L Pad pad" Button 9 "key +" xsetwacom --set "UC-LOGIC ugee-1000L Pad pad" Button 10 "key -"