summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2020-12-01 17:28:15 -0800
committerFranck Cuny <franck@fcuny.net>2020-12-01 17:28:15 -0800
commit26ad544890ab2c70def4c50f1a94bb10bbea2eea (patch)
tree9bfb1fe679dc13816d99428633fd18d2d8dcfe28
parentemacs: add package for systemd (diff)
downloademacs.d-26ad544890ab2c70def4c50f1a94bb10bbea2eea.tar.gz
readme: add info for touchpad
Xorg configuration for the touchpad (just in case).
Diffstat (limited to '')
-rw-r--r--README.org13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.org b/README.org
index dcbb01b..873ae02 100644
--- a/README.org
+++ b/README.org
@@ -4,3 +4,16 @@
 - keep it simple
 - configurations work the same way, everywhere
 * emacs
+* Linux
+** xorg
+To fix the touchpad (use reverse / natural scrolling and faster movement):
+#+begin_src
+##/etc/X11/xorg.conf.d/30-touchpad.conf
+Section "InputClass"
+    Identifier "touchpad"
+    Driver "libinput"
+    MatchIsTouchpad "on"
+    Option "NaturalScrolling" "true"
+    Option "AccelSpeed" "0.3"
+EndSection
+#+end_src