To
avoid opening a terminal and execute operating system commands in
order to run GuitarChorder 1.1 you can create a script file and leave it
on the desktop. To create an application launcher follow these
instructions depending on your operating system.
In
Windows:
- Open Notepad and type the following commands:
cd
C: \ GuitarChorder (or where we unpacked GuitarChorder)
java-jar
GuitarChorder.jar
- Then go to "Save As" and give it a name with a .bat extension, for example "GuitarChorder.bat" or "GC.bat".
- To run it click the mouse twice on it.
In
Linux:
- Write in a text editor (nano, mcedit, vim, nedit, etc..)
#!
/ bin / bash
cd
/ home / GuitaChorder (or where we unpacked GuitaChorder)
java
-jar GuitarChorder.jar
- Save it with a name, eg "GuitarChorder.sh" or "GC.sh".
- Run "chmod x GuitarChorder.sh" to make it executable.
- Run ". / GuitarChorder.sh" (the ". /" Means "current directory")
Para
evitar tener que abrir un terminal y ejecutar comandos de sistema
operativo para abrir GuitarChorder podemos crear un archivo de
comandos y dejarlo en el Escritorio para que esté más a mano. Para
crear un lanzador de aplicación sigue las siguientes instrucciones
según sea tu sistema operativo.
En
Windows:
- Abrir el bloc de notas y escribir los siguientes comandos:
java
-jar GuitarChorder.jar
- Luego vamos a “Guardar Como” y le damos un nombre con la extensión .bat, por ejemplo “GuitarChorder.bat”, o bien “GC.bat”.
- Para ejecutarlo solo tendrás que pulsar con el ratón dos veces.
En
Linux:
- Escribe en un editor de texto (nano, mcedit, vim, nedit, etc.):
#! /bin/bash cd /home/GuitaChorder (o donde hayamos descomprimido GuitaChorder) java -jar GuitarChorder.jar
- Grábalo con un nombre cualquiera, por ejemplo “GuitarChorder.sh”, o bien “GC.sh”.
- Ejecuta "chmod +x GuitarChorder.sh", con el nombre que lo hayas grabado para hacerlo ejecutable.
- Ejecuta "./GuitarChorder.sh" (el "./" significa "del directorio actual")