From 3c37c13620a60de0d5e1209799bb2f2a85c9bc2d Mon Sep 17 00:00:00 2001 From: Ian Keane Date: Wed, 18 Sep 2024 21:56:39 -0400 Subject: [PATCH] Move synaptics settings to org file --- dotfiles.org | 13 +++++++++++++ slackware/etc/X11/xorg.conf.d/10-synaptics.conf | 7 ------- 2 files changed, 13 insertions(+), 7 deletions(-) delete mode 100644 slackware/etc/X11/xorg.conf.d/10-synaptics.conf diff --git a/dotfiles.org b/dotfiles.org index 2f1a43f..b6969ea 100644 --- a/dotfiles.org +++ b/dotfiles.org @@ -151,6 +151,19 @@ Section "InputClass" Option "XkbOptions" "grp:alt_shift_toggle,ctrl:nocaps,altwin:swap_alt_win" EndSection #+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 #+begin_src ini :tangle ~/.config/dunst/dunstrc [global] diff --git a/slackware/etc/X11/xorg.conf.d/10-synaptics.conf b/slackware/etc/X11/xorg.conf.d/10-synaptics.conf deleted file mode 100644 index 1931681..0000000 --- a/slackware/etc/X11/xorg.conf.d/10-synaptics.conf +++ /dev/null @@ -1,7 +0,0 @@ -Section "InputClass" - Identifier "touchpad catchall" - Driver "synaptics" - MatchIsTouchpad "on" - MatchDevicePath "/dev/input/event*" - Option "MaxTapTime" "0" -EndSection