As a continuation of Octopi vs Synaptic post...
Finding out the chronological install or remove date and time of packages is a simple:
~ > grep "installed" /var/log/pacman.log
or
~ > grep "removed" /var/log/pacman.log
Grouping a particular date, never mind the time duration, is what I wanted to point out on the above mentioned thread/discussion.
Example: pacman.log
or try in on your own logfile.
And say, I just wanted the list of packages installed or upgraded on Jan. 7th.
~ > sed -E '/2025-01-07/!d' /var/log/pacman.log | grep 'installed'
or
~ > sed -E '/2025-01-07/!d' /var/log/pacman.log | grep 'upgraded'