Clean Your Downloads
'Downloads` directory always too full of crap? Make it a temporary filesystem! Everything will be deleted whenever you reboot.
1rm -rf ~/Downloads # Be brave!
2mkdir Downloads
3cp /etc/fstab /tmp/
4echo "tmpfs $HOME/Downloads tmpfs defaults,size=1G 0 0" | sudo tee -a /etc/fstab
5sudo systemctl daemon-reload # Ignore this if you don't use systemd
6sudo mount -a
7mount | tail -1