Skip to content
New issue

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

Extra configuration for TS35-E3 #1

Closed
achenakid opened this issue Dec 4, 2021 · 2 comments
Closed

Extra configuration for TS35-E3 #1

achenakid opened this issue Dec 4, 2021 · 2 comments

Comments

@achenakid
Copy link

achenakid commented Dec 4, 2021

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

@willngton
Copy link
Owner

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 !

willngton added a commit that referenced this issue Dec 9, 2021
@willngton
Copy link
Owner

I have update guide, and no more need to try and error

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants