Skip to content

Instantly share code, notes, and snippets.

@evensure
evensure / list_optional_deps.fish
Created October 21, 2025 08:32 — forked from leyyce/list_optional_deps.fish
[bash/fish] pacman: List optional dependencies for all installed packages
function list_optional_deps
for pkg in (pacman -Qeq)
set -l deps (pacman -Qi $pkg | awk '
BEGIN {flag=0}
/^Optional Deps/ {
flag=1;
sub(/^[^:]+:[ \t]*/, "");
print;
next
}
@evensure
evensure / Install_Arch_Linux.md
Last active September 12, 2023 13:27
Install Arch Linux with LUKS encrypted LVM

How to Install Arch Linux

Featuring LVM with LUKS encrption (LVM on LUKS) on SSD in UEFI Boot Mode with GPT Partition Table and systemd Bootloader

This guide is mainly based upon the [Official Installation Guide]. Other sources are stated in the corresponding paragraphs. Generally, the [ArchWiki] is the first place to look for information and guides on all aspects of Arch Linux.

This guide was created for personal reference. When trying this at home, YOU have to be aware of what you do as I don't take responsibility for any damage.

Prepare bootable USB drive

Download Arch iso image from [Arch Download].