- Edited
If you compile a program from source or download an app in archive format, this may not be the case and you may have to open the terminal to execute the binary every time you want to use it. Obviously, this can become a very tedious and troublesome step.
This tutorial will describe how you can create a .desktop file for any application you use that you can launch from the Application menu.
For demonstration purposes, I will create a .desktop file for Tuxguitar, a tablature editor. A version is available Sourceforge (Need Java Installed).
Launch your text editor and paste the following into the empty text file:
[Desktop Entry]
#The type as listed above
Type=Application#The version of the desktop entry specification to which this file complies
Version=1.0#The name of the application
Name=Tuxguitar#A comment which can/will be used as a tooltip
Comment=Editor de tablaturas#The path to the folder in which the executable is run
Path=/home/os4/.bin/tuxguitar-1.5.2-linux-x86_64/#The executable of the application, possibly with arguments.
Exec=/home/os4/.bin/tuxguitar-1.5.2-linux-x86_64/tuxguitar.sh#The name of the icon that will be used to display this entry
Icon=/home/os4/.bin/tuxguitar-1.5.2-linux-x86_64/share/skins/Lavender/logo.png#Describes whether this application needs to be run in a terminal or not
Terminal=false#Describes the categories in which this entry should be shown
Categories=AudioVideo
Finally, save the file in ~/.local/share/applications
folder as “application-name.desktop”.