summary refs log tree commit diff
path: root/README.org
blob: 0a4508ef5a8b14d67a19c2373c85efb951fc8d3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#+TITLE: Personal configurations, scripts and tools.

* goals
- keep it simple
- configurations work the same way, everywhere
* emacs
* Linux
** installed packages
Under arch linux, you can run the following to get the list of installed packages:
,
#+begin_src sh
pacman -Qqe
#+end_src

#+RESULTS:
| alacritty              |
| alsa-utils             |
| base                   |
| btrfs-progs            |
| chromium               |
| dmenu                  |
| docker                 |
| easytag                |
| emacs                  |
| ethtool                |
| feh                    |
| firefox                |
| fwupd                  |
| gcc                    |
| git                    |
| gnome-keyring          |
| go                     |
| htop                   |
| hugo                   |
| i3-wm                  |
| i3lock                 |
| i3status               |
| intel-ucode            |
| iwd                    |
| jq                     |
| lightdm                |
| lightdm-gtk-greeter    |
| linux                  |
| linux-firmware         |
| make                   |
| man-db                 |
| mc                     |
| mg                     |
| mpc                    |
| mpd                    |
| mupdf                  |
| network-manager-applet |
| noto-fonts             |
| noto-fonts-cjk         |
| noto-fonts-emoji       |
| openssh                |
| podman                 |
| pulseaudio             |
| pulseaudio-alsa        |
| racket-minimal         |
| redshift               |
| restic                 |
| ripgrep                |
| rsync                  |
| smbclient              |
| strace                 |
| sudo                   |
| tcpdump                |
| tmux                   |
| ttf-bitstream-vera     |
| ttf-dejavu             |
| ttf-droid              |
| unzip                  |
| vi                     |
| w3m                    |
| wavemon                |
| wireshark-cli          |
| wireshark-qt           |
| xclip                  |
| xdg-user-dirs          |
| xorg-server            |
| xorg-xmodmap           |
| xorg-xrandr            |
| xorg-xrdb              |
| xorg-xsetroot          |
| xss-lock               |
| xterm                  |
| zsh                    |

** 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