One thing you could do is to create a script that would execute what you want. Try putting the following in a file called "jalbum":
Now save that file, and make it executable by issuing "chmod +x jalbum" from the command line (or right-click the file in a GUI and change the permissions in the file properties).Code:#!/bin/bash java -jar /home/ron/JAlbum/JAlbum.jar
Finally, move the file to /usr/bin. You will need access to the root account for this. Use "sudo mv jalbum /usr/bin" (or, if that doesn't work, "su" followed by "mv jalbum /usr/bin").
Now, whenever you type the command "jalbum" from the command line, it should do what you want. For the kicker, you can use an icon that launches /usr/bin/jalbum when clicked.


Reply With Quote
Bookmarks