summary refs log tree commit diff
path: root/README.org
blob: 873ae0267ed9f8d566af2818caa14cb5f31ec4e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#+TITLE: Personal configurations, scripts and tools.

* goals
- keep it simple
- configurations work the same way, everywhere
* emacs
* Linux
** xorg
To fix the touchpad (use reverse / natural scrolling and faster movement):
#+begin_src
##/etc/X11/xorg.conf.d/30-touchpad.conf
Section "InputClass"
    Identifier "touchpad"
    Driver "libinput"
    MatchIsTouchpad "on"
    Option "NaturalScrolling" "true"
    Option "AccelSpeed" "0.3"
EndSection
#+end_src