Last active
August 20, 2023 05:07
-
-
Save netvip3r/168488bb94ea5ef0c644e49dd58bba86 to your computer and use it in GitHub Desktop.
Blank 'skeleton' .desktop file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ref: https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html#recognized-keys | |
[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=Sample Application Name | |
# A comment which can/will be used as a tooltip | |
Comment=A sample application | |
# The path to the folder in which the executable is run | |
Path=/opt/path/to/app | |
# The executable of the application. | |
Exec=application | |
# The name of the icon that will be used to display this entry | |
Icon=application.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 | |
# https://www.freedesktop.org/wiki/Specifications/menu-spec/ | |
Categories=Education;Languages;Java; | |
# Deprecated: https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-1.0.html#legacy-mixed | |
# Encoding | |
#Encoding=UTF-8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
encoding
key is deprecated.