Skip to content

Instantly share code, notes, and snippets.

@finalclass
Last active July 29, 2016 07:20
Show Gist options
  • Save finalclass/94d646230023f61186e8ab4973a0cd0b to your computer and use it in GitHub Desktop.
Save finalclass/94d646230023f61186e8ab4973a0cd0b to your computer and use it in GitHub Desktop.

Ubuntu 16.04 + Dell XPS 13 tweaks

Touchscreen

to make touchscreen work:

echo "blacklist usbtouchscreen" | sudo tee -a /etc/modprobe.d/blacklist.conf

Touchpad

for touchpad configuration create a file /etc/X11/xorg.conf.d/50-libinput.conf with this content:

Section "InputClass"
    Identifier "XPS13 settings"
    MatchDriver "libinput"
    MatchProduct "DLL0704:01 06CB:76AE Touchpad"

    Option "NaturalScrolling" "on"
    Option "AccelProfile" "flat"
    Option "AccelSpeed" "1"
EndSection

To have a proper "MatchProduct" property value use xinput list command

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment