List of recently installed apt packages
Take a look at this answer:
Command to list recently installed packages that were installed via any method (apt-get, Software Center et al.):
grep " install " /var/log/dpkg.log
You could run this command to list only the recently installed package names,
awk '$3~/^install$/ {print $4;}' /var/log/dpkg.log