Sometimes after an update my key repeat rate and touchpad settings are messed up. This script fixes these quickly.
8 lines
299 B
Bash
Executable File
8 lines
299 B
Bash
Executable File
#!/bin/sh
|
|
# See xinitrc for the values
|
|
|
|
xinput set-prop "DLL082A:01 06CB:76AF Touchpad" "libinput Tapping Enabled" 1
|
|
xinput set-prop "DLL082A:01 06CB:76AF Touchpad" "libinput Natural Scrolling Enabled" 1
|
|
xinput set-prop "DLL082A:01 06CB:76AF Touchpad" "libinput Accel Speed" 0.45
|
|
xset r rate 300 50
|