I have created a java project, and I have exported it to my desktop.
Is there a way of converting that .jar file on my desktop, to a Unix executable file?
You can create a launch file (shortcut). You need to create a file with text:
#!/bin/sh java -jar myProject.jar and make it executable:
chmod + x ./shortcutfile OR
Right click on jar-file. Select "Open With Other Application" and choose "Runtime Environment".
java -jar myjar.jar.jpackage.