commit 36b724e25257d22f3d0f2ac3de4ff036901a320d
Author: fjbalon <fjbalon@templier.es>
Date: Sun, 26 Jul 2026 01:54:51 +0200
Añadido xorg.conf.d/
Diffstat:
5 files changed, 45 insertions(+), 0 deletions(-)
diff --git a/10-keyboard.conf b/10-keyboard.conf
@@ -0,0 +1,9 @@
+#/etc/X11/xorg.conf.d/10-keyboard.conf
+Section "InputClass"
+ Identifier "system-keyboard"
+ MatchIsKeyboard "on"
+ Option "XkbLayout" "es"
+ Option "XkbModel" "pc104"
+ Option "XkbVariant" "deadtilde,dvorak"
+ Option "XkbOptions" "grp:alt_shift_toggle"
+EndSection
diff --git a/40-dpi.conf b/40-dpi.conf
@@ -0,0 +1,5 @@
+#/etc/X11/xorg.conf.d/40-dpi.conf
+Section "Monitor"
+ Identifier "eDP1"
+ Option "DPI" "157 x 157"
+EndSection
+\ No newline at end of file
diff --git a/50-mouse-acceleration.conf b/50-mouse-acceleration.conf
@@ -0,0 +1,9 @@
+#/etc/X11/xorg.conf.d/50-mouse-acceleration.conf
+Section "InputClass"
+ Identifier "My Mouse"
+ MatchIsPointer "yes"
+# set the following to 1 1 0 respectively to disable acceleration.
+ Option "AccelerationNumerator" "2"
+ Option "AccelerationDenominator" "1"
+ Option "AccelerationThreshold" "4"
+EndSection
diff --git a/50-mouse-deceleration.conf b/50-mouse-deceleration.conf
@@ -0,0 +1,9 @@
+#/etc/X11/xorg.conf.d/50-mouse-deceleration.conf
+Section "InputClass"
+ Identifier "My Mouse"
+ MatchIsPointer "yes"
+# some curved deceleration
+# Option "AdaptiveDeceleration" "2"
+# linear deceleration (mouse speed reduction)
+ Option "ConstantDeceleration" "2"
+EndSection
diff --git a/50-synaptics.conf b/50-synaptics.conf
@@ -0,0 +1,12 @@
+#/etc/X11/xorg.conf.d/50-synaptics.conf
+Section "InputClass"
+ Identifier "touchpad"
+ Driver "synaptics"
+ MatchIsTouchpad "on"
+ Option "TapButton1" "1" # Botón 1 (izq) activado con 1 dedo
+ Option "TapButton2" "3" # Botón 2 (mid) activado con 3 dedos
+ Option "TapButton3" "2" # Botón 3 (der) activado con 2 dedos
+ Option "VertTwoFingerScroll" "on" # Movimiento vertical con dos dedos
+ Option "HorizTwoFingerScroll" "on" # Movimiento horizontal con dos dedos
+ Option "VertScrollDelta" "-111" # Invertir scroll vertical de forma natural
+EndSection