pacman -Qo $(ls -1t --time=atime /usr/bin | tail -n30)

Find infrequently used binaries on your system. ls --time=atime is the key here, it uses the access time instead of the modification time, which is the default.