Move synaptics settings to org file

This commit is contained in:
Ian Keane 2024-09-18 21:56:39 -04:00
parent 3fe4b3adb1
commit 3c37c13620
2 changed files with 13 additions and 7 deletions

View file

@ -151,6 +151,19 @@ Section "InputClass"
Option "XkbOptions" "grp:alt_shift_toggle,ctrl:nocaps,altwin:swap_alt_win" Option "XkbOptions" "grp:alt_shift_toggle,ctrl:nocaps,altwin:swap_alt_win"
EndSection EndSection
#+end_src #+end_src
** Non-Nix Xorg
*** Laptop Only
- Avoid unintentional touchpad activation
- TODO: Tangle to /etc/X11/xorg.conf.d/10-synaptics.conf for non-nix
#+begin_src
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Option "MaxTapTime" "0"
EndSection
#+end_src
* Dunst * Dunst
#+begin_src ini :tangle ~/.config/dunst/dunstrc #+begin_src ini :tangle ~/.config/dunst/dunstrc
[global] [global]

View file

@ -1,7 +0,0 @@
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Option "MaxTapTime" "0"
EndSection