You are not logged in.

#1 2014-02-04 21:08:16

rabcor
Banned
Registered: 2013-02-09
Posts: 500

[Solved]Making xorg settings stick (wacom tablet)

I've configured "/etc/X11/xorg.conf.d/50-wacom.conf" to this

#Stylus
Section "InputClass"
	Identifier "Wacom Stylus"
	MatchProduct "Wacom|WACOM|Hanwang|PTK-540WL"
	MatchDevicePath "/dev/input/event*"
	Driver "wacom"

	#Parameters
	#Option "RawSample" "20"
	Option "PressureCurve" "0 0 65 100"
EndSection

#Eraser
Section "InputClass"
        Identifier "Wacom Eraser"
        MatchProduct "WACf|FUJ02e5|FUJ02e7|FUJ02e9"
        Driver "wacom"

	#Parameters
	#Option "RawSample" "20"
	Option "PressureCurve" "0 0 45 100"
EndSection

...

However when I run 'xsetwacom --get ID PressureCurve' it says it's set to the default; "0 0 100 100" instead of what I configured,

Last edited by rabcor (2014-02-04 21:49:49)

Offline

#2 2014-02-04 21:31:26

rabcor
Banned
Registered: 2013-02-09
Posts: 500

Re: [Solved]Making xorg settings stick (wacom tablet)

Half-Solved:

Xorg Configuration follows a different syntax, so instead of

Option "PressureCurve" "0 0 65 100"

I had to do

Option "PressCurve" "0,0,65,100"

Kind of silly, but I ran into another problem; my eraser is using the same settings as the stylus D:

Offline

#3 2014-02-04 21:49:36

rabcor
Banned
Registered: 2013-02-09
Posts: 500

Re: [Solved]Making xorg settings stick (wacom tablet)

Solved:

The drivers didn't automatically create an eraser class for me, so I had to add

Section "InputClass"
	Identifier "Wacom eraser class"
	MatchDriver "wacom"
	MatchProduct "eraser"

	#Parameters
	#Option "RawSample" "20" #?
	#Option "Threshold" "60" #Pressure Sensitivity Threshold
	Option "PressCurve" "0,0,45,100" #Pressure Curve
EndSection

That solved it.

Offline

Board footer

Powered by FluxBB