blob: 97c19f2160868663bf9db185350a535ee28b1c57 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# natural scrolling - trackpad
xinput --set-prop 'DLL07BF:01 06CB:7A13 Touchpad' 'libinput Natural Scrolling Enabled' 1
# increase cursor speed - trackpad
xinput --set-prop 'DLL07BF:01 06CB:7A13 Touchpad' 'libinput Accel Speed' 1
# natural scrolling - mouse
xinput --set-prop 'Logitech USB Receiver Mouse' 'libinput Natural Scrolling Enabled' 1
# increase cursor speed - mouse
xinput --set-prop 'Logitech USB Receiver Mouse' 'libinput Accel Speed' 1
# disable touchscreen on laptop
xinput disable 'ELAN Touchscreen'
|