Add touch fix script
This commit is contained in:
parent
1b7d995681
commit
10ffa57ef9
|
@ -64,3 +64,9 @@ sudo systemctl enable tdp-set.service
|
|||
```
|
||||
|
||||
Reboot your Win 3, then run `tdp check` to verify that TDP was set correctly.
|
||||
|
||||
# Touch fix
|
||||
|
||||
The script `touch-fix` unloads, then loads the touchscreen modules needed by the Win 3. This makes the touchscreen work, but only until next reboot.
|
||||
|
||||
Install the script and simply run `touch-fix` after boot to get the touchscreen up and running, until there is a permanent fix available.
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
#! /usr/bin/bash
|
||||
|
||||
sudo modprobe -r goodix
|
||||
sudo modprobe goodix
|
||||
|
Loading…
Reference in New Issue