blob: f472fa55b4a697cfa1cd9c3e95e478b65ff2e6fe (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
# xinput --list
# xinput --list-props <device>
# xinput --set-prop <device> <prop> <value>
xinput --set-prop "TPPS/2 Elan TrackPoint" "libinput Accel Speed" -0.5 # make trackpoint accelerate less
xinput --set-prop "SynPS/2 Synaptics TouchPad" "libinput Accel Speed" 0.3 # make trackpad accelerate more
xinput --set-prop "SynPS/2 Synaptics TouchPad" "libinput Disable While Typing Enabled" 0 # don't disable trackpad while typing
|