diff options
author | William Carroll <wpcarro@gmail.com> | 2019-05-13T15·40+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2019-05-13T15·40+0100 |
commit | 01b985fdd9d2d2798c428c3c86942ca3e6289273 (patch) | |
tree | 2afd6375b5ab95f1af5f2cb1ab83df5515ba32e5 | |
parent | 6fba42e30644c6872fa54812250d0150ece538d0 (diff) |
Support external mouse for laptop
New hardware = new configuration.
-rw-r--r-- | configs/laptop/x_server/.xsessionrc.device | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/configs/laptop/x_server/.xsessionrc.device b/configs/laptop/x_server/.xsessionrc.device index 83ee8caaca19..97c19f216086 100644 --- a/configs/laptop/x_server/.xsessionrc.device +++ b/configs/laptop/x_server/.xsessionrc.device @@ -1,8 +1,14 @@ -# setup OSX style scrolling for laptop +# natural scrolling - trackpad xinput --set-prop 'DLL07BF:01 06CB:7A13 Touchpad' 'libinput Natural Scrolling Enabled' 1 -# increase cursor speed +# 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' |