Skip to content

Instantly share code, notes, and snippets.

@keremgocen
Last active February 23, 2019 18:39
Show Gist options
  • Save keremgocen/29892f91176079ee99d979c92cbae308 to your computer and use it in GitHub Desktop.
Save keremgocen/29892f91176079ee99d979c92cbae308 to your computer and use it in GitHub Desktop.
#### Touchpad clickfinger
disable middle click area and use 3 fingers instead
> sudo pacman -S xf86-input-libinput
> sudo nano /usr/share/X11/xorg.conf.d/40-libinput.conf
`Option "Tapping" "on"`: tapping a.k.a. tap-to-click
`Option "ClickMethod" "clickfinger"`: trackpad no longer has middle and right button areas and instead two-finger click is a context click and three-finger click is a middle click, see the docs.
`Option "NaturalScrolling" "true"`: natural (reverse) scrolling
`Option "TappingButtonMap" "lrm"`: set 1/2/3-finger taps to left/right/middle
#### Redshift autostart
> pacman -S redshift
> systemctl --user edit redshift
```
[Service]
RestartSec=1
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment