From 268852f65ebd12fa3ab9197956b52e9d60974e44 Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Sun, 20 Aug 2023 12:43:44 -0300 Subject: [PATCH] Add xorg.conf with my preferences --- roles/home-gui/files/acp-xorg.conf | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 roles/home-gui/files/acp-xorg.conf diff --git a/roles/home-gui/files/acp-xorg.conf b/roles/home-gui/files/acp-xorg.conf new file mode 100644 index 0000000..613a4f4 --- /dev/null +++ b/roles/home-gui/files/acp-xorg.conf @@ -0,0 +1,21 @@ +Section "InputClass" + Identifier "acp-keyboard" + MatchIsKeyboard "on" + Option "XkbModel" "pc105" + Option "XkbLayout" "gb,ca" + Option "XkbVariant" ",multix" + Option "XkbOptions" "grp:alt_shift_toggle,compose:menu,lv3:ralt_switch,lv5:rctrl_switch" +EndSection + +Section "InputClass" + MatchIsPointer "on" + Identifier "acp-pointer" + Option "NaturalScrolling" "false" +EndSection + +Section "InputClass" + Identifier "acp-touchpad" + MatchIsTouchpad "on" + Option "NaturalScrolling" "true" + Option "Tapping" "true" +EndSection