We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Had some trouble configuring TS35-E3. The touch feedback direction is always wrong, until did below modifications
sudo nano /usr/share/X11/xorg.conf.d/40-libinput.conf
find Identifier "libinput touchscreen catchall" as below,
Section "InputClass" Identifier "libinput touchscreen catchall" MatchIsTouchscreen "on" MatchDevicePath "/dev/input/event*" Driver "libinput" EndSection
Add one line Option "TransformationMatrix" "0 -1 1 1 0 0 0 0 1" as below,
Section "InputClass" Identifier "libinput touchscreen catchall" MatchIsTouchscreen "on" Option "TransformationMatrix" "0 -1 1 1 0 0 0 0 1" MatchDevicePath "/dev/input/event*" Driver "libinput" EndSection
save and reboot
The text was updated successfully, but these errors were encountered:
Thank you very much for the help mate, was scratching my head trying to find a long term solution's for touch configuration.
I will test this out and update the guide,
Thank you again !
Sorry, something went wrong.
Updated screen calibration
060366b
#1
I have update guide, and no more need to try and error
No branches or pull requests
Had some trouble configuring TS35-E3. The touch feedback direction is always wrong, until did below modifications
sudo nano /usr/share/X11/xorg.conf.d/40-libinput.conf
find Identifier "libinput touchscreen catchall" as below,
Section "InputClass"
Identifier "libinput touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Add one line Option "TransformationMatrix" "0 -1 1 1 0 0 0 0 1" as below,
Section "InputClass"
Identifier "libinput touchscreen catchall"
MatchIsTouchscreen "on"
Option "TransformationMatrix" "0 -1 1 1 0 0 0 0 1"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
save and reboot
The text was updated successfully, but these errors were encountered: