diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-04-12 15:24:28 +0000 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-04-12 15:24:28 +0000 |
commit | 9c93ebdb49d2f9f45e09e7504b24f7199c4a8de7 (patch) | |
tree | af4d67a79e66ec722c007245ae961d3f41c5555a | |
parent | 2871c90a2507bbbbfc25e62da7c31dba6546f770 (diff) | |
download | dotfiles-9c93ebdb49d2f9f45e09e7504b24f7199c4a8de7.tar.gz |
feat(X11): remove unused configs
-rw-r--r-- | X11/etc/X11/xorg.conf.d/20-intel.conf | 5 | ||||
-rw-r--r-- | X11/etc/X11/xorg.conf.d/40-libinput.conf | 52 | ||||
-rw-r--r-- | X11/etc/X11/xorg.conf.d/70-synaptics.conf | 23 |
3 files changed, 0 insertions, 80 deletions
diff --git a/X11/etc/X11/xorg.conf.d/20-intel.conf b/X11/etc/X11/xorg.conf.d/20-intel.conf deleted file mode 100644 index 36f6eb5..0000000 --- a/X11/etc/X11/xorg.conf.d/20-intel.conf +++ /dev/null @@ -1,5 +0,0 @@ -Section "Device" - Identifier "Intel Graphics" - Driver "intel" - Option "Backlight" "intel_backlight" -EndSection diff --git a/X11/etc/X11/xorg.conf.d/40-libinput.conf b/X11/etc/X11/xorg.conf.d/40-libinput.conf deleted file mode 100644 index eb33ad0..0000000 --- a/X11/etc/X11/xorg.conf.d/40-libinput.conf +++ /dev/null @@ -1,52 +0,0 @@ -# Match on all types of devices but joysticks -# -# If you want to configure your devices, do not copy this file. -# Instead, use a config snippet that contains something like this: -# -# Section "InputClass" -# Identifier "something or other" -# MatchDriver "libinput" -# -# MatchIsTouchpad "on" -# ... other Match directives ... -# Option "someoption" "value" -# EndSection -# -# This applies the option any libinput device also matched by the other -# directives. See the xorg.conf(5) man page for more info on -# matching devices. - -Section "InputClass" - Identifier "libinput pointer catchall" - MatchIsPointer "on" - MatchDevicePath "/dev/input/event*" - Driver "libinput" -EndSection - -Section "InputClass" - Identifier "libinput keyboard catchall" - MatchIsKeyboard "on" - MatchDevicePath "/dev/input/event*" - Driver "libinput" -EndSection - -Section "InputClass" - Identifier "libinput touchpad catchall" - MatchIsTouchpad "on" - MatchDevicePath "/dev/input/event*" - Driver "libinput" -EndSection - -Section "InputClass" - Identifier "libinput touchscreen catchall" - MatchIsTouchscreen "on" - MatchDevicePath "/dev/input/event*" - Driver "libinput" -EndSection - -Section "InputClass" - Identifier "libinput tablet catchall" - MatchIsTablet "on" - MatchDevicePath "/dev/input/event*" - Driver "libinput" -EndSection diff --git a/X11/etc/X11/xorg.conf.d/70-synaptics.conf b/X11/etc/X11/xorg.conf.d/70-synaptics.conf deleted file mode 100644 index 79808ae..0000000 --- a/X11/etc/X11/xorg.conf.d/70-synaptics.conf +++ /dev/null @@ -1,23 +0,0 @@ -Section "InputClass" - Identifier "touchpad catchall" - Driver "synaptics" - MatchIsTouchpad "on" - Option "NaturalScrolling" "on" - Option "TapButton1" "1" - Option "TapButton2" "3" - Option "TapButton3" "2" - Option "VertEdgeScroll" "on" - Option "VertTwoFingerScroll" "on" - Option "HorizEdgeScroll" "on" - Option "HorizTwoFingerScroll" "on" - Option "CircularScrolling" "on" - Option "CircScrollTrigger" "2" - Option "EmulateTwoFingerMinZ" "40" - Option "EmulateTwoFingerMinW" "8" - Option "CoastingSpeed" "0" - Option "FingerLow" "30" - Option "FingerHigh" "50" - Option "MaxTapTime" "125" - Option "VertScrollDelta" "-50" - Option "HorizScrollDelta" "-50" -EndSection |