Back when I mainly used Windows, I always exported a text file containing my installed programs from the software "CCleaner" before reinstalling my operating system, so that I had a list with all the software I would have to reinstall and not miss anything.
Unfortunately, I can't seem to find such a list in Ubuntu (using Xfce currently, but also just in general). Also, it would be helpful if that list did not include just all packages, such as plymouth, gedit and nautilus, which are installed by defauly anyway, but only those installed by the user.
Is there a way to obtain such a list?
comm -23 <(apt-mark showmanual | sort -u) <(gzip -dc /var/log/installer/initial-status.gz | sed -n 's/^Package: //p' | sort -u)
from the liked answer seems to do the trick. Thank you for the hint and sorry for the duplicate question. – Prototype700 Jun 22 '17 at 11:37