List and sort out Installed Packages according to time

You can do this

grep "\[ALPM\] installed" /var/log/pacman.log

It will list all packages according to their install date (not when they were last updated!). But if you removed some packages, they will still be listed, because they were installed at some point. We can also list all the packages and their removal dates and do some programming to filter the list, but that requires effort :slight_smile:

3 Likes