summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfigurator.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-rw-r--r--perl-install/Xconfigurator.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm
index e804c160a..049bbd823 100644
--- a/perl-install/Xconfigurator.pm
+++ b/perl-install/Xconfigurator.pm
@@ -759,14 +759,17 @@ Section "XInput"
SubSection "WacomStylus"
Port "/dev/$o->{wacom}"
AlwaysCore
+ Mode Absolute
EndSubSection
SubSection "WacomCursor"
Port "/dev/$o->{wacom}"
AlwaysCore
+ Mode Relative
EndSubSection
SubSection "WacomEraser"
Port "/dev/$o->{wacom}"
AlwaysCore
+ Mode Absolute
EndSubSection
EndSection
@@ -778,18 +781,21 @@ Section "InputDevice"
Driver "wacom"
Option "Type" "stylus"
Option "Device" "/dev/$o->{wacom}"
+ Option "Mode" "Absolute"
EndSection
Section "InputDevice"
Identifier "eraser"
Driver "wacom"
Option "Type" "eraser"
Option "Device" "/dev/$o->{wacom}"
+ Option "Mode" "Absolute"
EndSection
Section "InputDevice"
Identifier "cursor"
Driver "wacom"
Option "Type" "cursor"
Option "Device" "/dev/$o->{wacom}"
+ Option "Mode" "Relative"
EndSection
) if $o->{wacom};