a new terminal opens up and runs the script.
terminal -e "/script"
script runs a gui_app, disowns it. sleeps 4 seconds.
#!/bin/sh
/gui_app & disown
sleep 4
after sleep.. terminal closes because there never was
;bash
attached to the command.
Conflict : it also shuts down the disowned gui_app