Hello,
I am trying to add a desktop shortcut for my downloaded application. (postman) in Gnome 40.4.0 with Fedora 34. I do not get that option in the context menu.
I tried creating a .desktop file with the following content, but it does not work.
#!/usr/bin/env xdg-open
[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=postman
# A comment which can/will be used as a tooltip
Comment=Postman
# The path to the folder in which the executable is run
#Path=/home/XXX/Downloads/Postman-linux-x64-8.10.0/Postman/app
# The executable of the application, possibly with arguments.
Exec=/home/XXX/Downloads/Postman-linux-x64-8.10.0/Postman/app/postman
# The name of the icon that will be used to display this entry
Icon=postman
# 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=Programming
Can someone please help?
Thanks!