summary refs log tree commit diff
path: root/README.org
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--README.org126
1 files changed, 0 insertions, 126 deletions
diff --git a/README.org b/README.org
index 61b16c1..c7873cb 100644
--- a/README.org
+++ b/README.org
@@ -29,129 +29,3 @@ If the program you debug needs argument, call =M-x dap-debug-edit-template=. Add
 The binding =C-c d= will bring an hydra menu for debugging.
 
 The REPL is not brought on by default when starting a debugging session, but =M-x dap-ui-repl= will start a REPL (the position is controlled by the variable =dap-ui-buffer-configurations=).
-* 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             |
-| aspell                 |
-| aspell-en              |
-| base                   |
-| btrfs-progs            |
-| chromium               |
-| dmenu                  |
-| docker                 |
-| easytag                |
-| emacs                  |
-| ethtool                |
-| faac                   |
-| feh                    |
-| firefox                |
-| fwupd                  |
-| gcc                    |
-| git                    |
-| gnome-keyring          |
-| go                     |
-| htop                   |
-| hugo                   |
-| i3-wm                  |
-| i3lock                 |
-| i3status               |
-| intel-ucode            |
-| iwd                    |
-| jq                     |
-| kubectl                |
-| lightdm                |
-| lightdm-gtk-greeter    |
-| linux                  |
-| linux-firmware         |
-| make                   |
-| man-db                 |
-| mc                     |
-| mg                     |
-| mpc                    |
-| mpd                    |
-| mupdf                  |
-| nautilus               |
-| network-manager-applet |
-| nodejs                 |
-| noto-fonts             |
-| noto-fonts-cjk         |
-| noto-fonts-emoji       |
-| openssh                |
-| podman                 |
-| pulseaudio             |
-| pulseaudio-alsa        |
-| qrencode               |
-| racket-minimal         |
-| redshift               |
-| restic                 |
-| rhythmbox              |
-| ripgrep                |
-| rsync                  |
-| sane-airscan           |
-| simple-scan            |
-| smbclient              |
-| strace                 |
-| sudo                   |
-| syncthing              |
-| systemd-resolvconf     |
-| tcpdump                |
-| tmux                   |
-| ttf-bitstream-vera     |
-| ttf-dejavu             |
-| ttf-droid              |
-| unzip                  |
-| vi                     |
-| vlc                    |
-| w3m                    |
-| wavemon                |
-| wireguard-tools        |
-| wireshark-cli          |
-| wireshark-qt           |
-| xclip                  |
-| xdg-user-dirs          |
-| xf86-video-intel       |
-| 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