#+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 In case it's needed, the configuration for the DELL 4k monitor: #+begin_src #/etc/X11/xorg.conf.d/25-dell-monitor-U2718Q.conf # Dell 4k home monitors (U2718Q) Section "Monitor" Identifier "DP-3" Option "DPMS" "true" EndSection #+end_src The following udev rules: #+begin_src #/etc/udev/rules.d/99-monitor-hotplug.rules KERNEL=="card0", ACTION=="change", SUBSYSTEM=="drm", ENV{DISPLAY}=":0" ENV{HOTPLUG}=="1", RUN+="/usr/local/bin/monitor-hotplug" #+end_src