Skip to content

Commit

Permalink
add x11
Browse files Browse the repository at this point in the history
  • Loading branch information
vindex10 committed Sep 12, 2020
1 parent 3e30530 commit 8e2a2cc
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
33 changes: 33 additions & 0 deletions X11/xorg.conf.d/70-synaptics.conf
@@ -0,0 +1,33 @@
# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
# Option "OptionName" "value"
#
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
MatchDevicePath "/dev/input/event*"
Option "HorizScrollDelta" "-95"
Option "VertScrollDelta" "-95"
Option "TapButton1" "1"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "HorizTwoFingerScroll" "1"
EndSection

Section "InputClass"
Identifier "touchpad ignore duplicates"
MatchIsTouchpad "on"
MatchOS "Linux"
MatchDevicePath "/dev/input/mouse*"
Option "Ignore" "on"
EndSection

11 changes: 11 additions & 0 deletions X11/xorg.conf.d/intel.conf
@@ -0,0 +1,11 @@
Section "Device"
Identifier "Device0"
Driver "intel"

Option "AccelMethod" "SNA"
Option "TearFree" "true"
EndSection

Section "Extensions"
Option "Composite" "Enable"
EndSection

0 comments on commit 8e2a2cc

Please sign in to comment.