1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-04-10 02:27:45 +02:00

Compare commits

..

No commits in common. "366a48e16ef73cdf60b61025d28068e0687a7f69" and "01c7dc67df5f15c56942aca17cd9252f56c714a8" have entirely different histories.

2 changed files with 8 additions and 25 deletions

View File

@ -74,3 +74,11 @@ If the fn keys are not working properly run
[a script](https://github.com/tiyn/dotfiles/blob/master/.local/bin/etc/fchange)
that changes the `sys/module/hid_apple/parameters/fnmode` file.
This toggles between the two different fn key functions.
## Toggle the touchpad
To toggle the touchpad on or off
[a simple script](https://github.com/tiyn/dotfiles/blob/master/.local/bin/tools/dwm/toggletouchpad)
can be used that uses `synclient TouchpadOff=1` or `synclient TouchpadOff=0`.
This requires `xf86-input-synaptics` which is a synaptics driver for
notebook touchpads.

View File

@ -56,31 +56,6 @@ Properties and options of a peripheral device can then be shown by running
`xinput list-props <id>` where `<id>` is the identifier of the
device.
#### Touchpad
This section describes the handling of touchpads by X.
##### Toggle the touchpad
To toggle the touchpad on or off
[a simple script](https://github.com/tiyn/dotfiles/blob/master/.local/bin/tools/dwm/toggletouchpad)
can be used that uses `synclient TouchpadOff=1` or `synclient TouchpadOff=0`.
This requires `xf86-input-synaptics` which is a synaptics driver for
notebook touchpads.
##### Enable Tap to Click
On Touchpads the tap to click option can be enabled by adding the following lines to the config
file `/etc/X11/xorg.conf.d/99-synaptics-overrides.conf`.
```txt
Section "InputClass"
Identifier "touchpad overrides"
MatchDriver "synaptics"
Option "TapButton1" "1"
EndSection
```
#### Keyboard
This section describes the handling of keyboards by X.