Update 'scripts/README.md'

This commit is contained in:
Quad 2021-05-21 10:20:20 +02:00
parent 65a60bab22
commit ec8965c3f9
1 changed files with 10 additions and 5 deletions

View File

@ -8,7 +8,7 @@ To install scripts, copy them somewhere on your Win 3, then add them to your pat
To quickly install the scripts, make sure `git` is installed and run this in a terminal:
```
```bash
mkdir -p ~/.local
git clone https://gitea.quad.moe/quad/win3-resources.git ~/.local/gpd-win3
echo -e "\n# GPD Win 3 scripts\nPATH=\"\${PATH}:\${HOME}/.local/gpd-win3/scripts\"" >> ~/.bashrc
@ -35,7 +35,7 @@ For details on how to use, run `tdp help`.
Common examples:
```
```bash
# Check current TDP
tdp check
@ -70,8 +70,13 @@ sudo systemctl enable tdp-set.service
Reboot your Win 3, then run `tdp check` to verify that TDP was set correctly.
# Touch fix
## 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.
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. Useful until a permanent fix is available.
Install the script and simply run `touch-fix` after boot to get the touchscreen up and running, until there is a permanent fix available.
Example commands:
```bash
# Reload touchscreen module
touch-fix
```