Read the documentation I linked to.
It does what you wanted.
If you want your program to pop up it's own window, make a shell script with
Chmod +x it and click on it instead to launch your cui. Or you could make a real gui...
It does what you wanted.
If you want your program to pop up it's own window, make a shell script with
Code:
#!/bin/sh
xterm -t foo -e myprogram &
Chmod +x it and click on it instead to launch your cui. Or you could make a real gui...