Sikkerhedskopier xorg.conf
Kode: Vælg alt
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
Åbn xorg.conf
Kode: Vælg alt
sudo gedit /etc/X11/xorg.conf
Indsæt følgende linjer. Hvis du har en touchpad (fx. synaptics) skal følgende tilføjes FØR indstillingerne for touchpad'en. Ellers virker det ikke.
Kode: Vælg alt
Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/input/wacom"
Option "Stylus2" "3" # set button to right click
Option "Type" "stylus"
Option "USB" "on"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/input/wacom"
Option "Type" "eraser"
Option "USB" "on"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/input/wacom"
Option "Type" "cursor"
Option "USB" "on"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "pad"
Option "Device" "/dev/input/wacom"
Option "Type" "pad"
Option "USB" "on"
EndSection
Til Section "ServerLayout" tilføjes følgende linjer:
Kode: Vælg alt
InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
InputDevice "pad"
så den ser ca. således ud (eksempel fra min opsætning):
Kode: Vælg alt
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
InputDevice "pad"
InputDevice "Synaptics Touchpad"
EndSection
That's it!
-------------------------------------------
NB! Alle ændringer i xorg.conf er på eget ansvar. Hvis du husker at lave backup af filen, er det ikke så farligt. Men ellers kan det smadre den grafiske brugerflade. Håber at nogen derude kan bruge denne post til noget.