add 'autoremove --purge' to the update/upgrade default command

when we press on the blue bottom :arrow_down: which is on Qubes Manager to update/upgrade whonix it will only run:

sudo apt update && sudo apt dist-upgrade

well that has some issue when some programs after upgrade doesn’t need the old components which as well need to be deleted as its useless to be there for no use so we use autoremove and better to use as well --purge, but in order to do that we need to open the konsole manually and write that command manually. so its better if we can use this command :

sudo apt update && sudo apt dist-upgrade && sudo apt autoremove --purge

Qubes issue.