Created
August 6, 2015 11:37
-
-
Save tazjin/fa0f7d2f02054f910221 to your computer and use it in GitHub Desktop.
X.org config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Read and parsed by systemd-localed. It's probably wise not to edit this file | |
# manually too freely. | |
Section "InputClass" | |
Identifier "system-keyboard" | |
MatchIsKeyboard "on" | |
Option "XkbLayout" "se" | |
Option "XkbModel" "pc105" | |
Option "XkbOptions" "terminate:ctrl_alt_bksp" | |
EndSection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Change acceleration method for Intel graphics card to the more stable uxa | |
# This prevents a whole lot of crashes. | |
Section "Device" | |
Identifier "Intel Graphics" | |
Driver "intel" | |
Option "AccelMethod" "uxa" | |
EndSection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Make the touchpad behave sanely | |
Section "InputClass" | |
Identifier "touchpad catchall" | |
MatchIsTouchpad "on" | |
Driver "synaptics" | |
Option "TapButton1" "-1" | |
Option "TapButton2" "-1" | |
Option "TapButton3" "-1" | |
Option "VertHysteresis" "25" | |
Option "HorizHysteresis" "25" | |
Option "PalmDetect" "1" | |
EndSection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment