MYMauro Ymgchinmauro.hashnode.dev·May 7, 2023 · 1 min readPacman - some useful commandsTo get a list of the last installed packages, you can run: grep -i installed /var/log/pacman.log List all installed packages: pacman -Qe List all installed packages with description (bash): expac -H M '%-20n\t%10d' $(pacman -Qe) Remove orphans: pa...00