It should be possible to write a text file that can be set to launch with Konsole automatixcally.To create a file that launches Neverwinter Nights I could do this:
open a console, cd to the directory to where the command will be run and type:
cat > nwnStart.sh *to create a file, name it *.sh the .sh extension will make sure it runs as a shel script*
cd /home/nwn *the directory where the program to be run is (may be optional)*
./nwn *command to run the program*
ctrl+d *hold down ctrl+d* to get back to normal command line*
Now you just have to create a sym link to the desktop. You can either clcik'n'drag or try something like:
ln -s /home/nwn/nwnStart.sh /home/desktop/<username>/<linkname>
You may have to do su before any of this depending on what the permissions in the current directory.
If the file doesn't execute do su and make sure to change the relevent permissions, for example:
su
*******
chmod 777 nwnStart.sh *read/write/execute permission to all users*
This should work fine
Another example (done in a shell):
su
*******
cd /home
cat > xineStart.sh
xine
ctrl+d
chmod 777 xineStart.sh
ln -s /home/xineStart.sh /home/<username>/desktop/xine
-Chris