ssh -X user@adress
An example nautilus: nautilus
When you close an application from button, Ctrl c brings you back to command line. You can also make your own launcher bar ..
#!/usr/bin/wish
button .btn1 -text "Nautilus" -command {exec nautilus}
button .btn2 -text "Terminal" -command {exec gnome-terminal}
button .btn3 -text "Synaptic" -command {exec synaptic}
button .btn4 -text "Gedit" -command {exec pluma}
button .btn5 -text "Totem" -command {exec totem}
button .btn6 -text "gFTP" -command {exec gftp}
button .btn7 -text "bareFTP" -command {exec bareftp}
button .btn8 -text "Writer" -command {exec libreoffice -writer}
button .btn9 -text "K3b" -command {exec k3b}
grid .btn1 .btn2 .btn3 .btn4 .btn5 .btn6 .btn7 .btn8 .btn9
Save as launcher.sh and make it executable (chmod +x launcher.sh)