“ |
Originally Posted by BenTheMan Second...how do I create a shortcut on my desktop so I don't have to open a terminal every time I want to run a certain program, let's call it Mathematica?
Suggestions?
|
” |
On my desktop (Gnome 2.14) I can create a new link on the menu/taskbar thing by right-clicking on it, selecting "add to panel", "Custom Application Launcher", then browsing for the Mathematica executable or startup script. I'm sure it's something similar if you're using KDE.
I suppose you could also try creating a script on the desktop (type "mathematica" or whatever the command is in a text file called "mathematica.sh", and set it to open with xterm or another terminal emulator).
Third possibility that comes to mind: create a symbolic link on the desktop with something like:
Code:
$ cd ~/Desktop
$ ln /usr/local/bin/mathematica mathematica
assuming your desktop directory is "~/Desktop" and your Mathematica binary is located at "/usr/local/bin/mathematica".
Disclaimer: I'm no guru - I'm not sure what the neatest way of getting a shortcut on the desktop is.