Skip to content

Instantly share code, notes, and snippets.

@tazjin
Created August 6, 2015 11:37
Show Gist options
  • Save tazjin/fa0f7d2f02054f910221 to your computer and use it in GitHub Desktop.
Save tazjin/fa0f7d2f02054f910221 to your computer and use it in GitHub Desktop.
X.org config
# 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
# 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
# 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