Pacman - some useful commands
To 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...
mauro.hashnode.dev1 min read