How to remotely run a desktop/GUI applications via SSH?

You can run GUI applications on your local desktop when connected via ssh to another machine by adding these flags:

ssh -o ForwardX11=yes -o ForwardAgent=yes -o ForwardX11Trusted=yes username@ip

forward simply tells the vm to forward its display output to your local display.