How do I get my app to appear in the Applications list?

Thunderforge

I have created a .deb package that copies files to the /opt/MyAppName directory. However, it does not appear in the Applications list, and I am unsure how to make that happen.

enter image description here

How do I make my app appear in this list? I would like to have this appear here for all users who use install the .deb when I publish it.

AnilV

You have to create a your_application.desktop file and then copy to /usr/share/applications/. Following is a sample .desktop file, I recently used to create sublime_text.desktop

[Desktop Entry]
Version=1.0
Type=Application
Name=Sublime Text
GenericName=Text Editor
Comment=Sophisticated text editor for code, markup and prose
Exec=/opt/sublime_text/sublime_text %F
Terminal=false
MimeType=text/plain;
Icon=/opt/sublime_text/Icon/128x128/sublime-text.png
Categories=TextEditor;Development;
StartupNotify=true
Actions=Window;Document;

[Desktop Action Window]
Name=New Window
Exec=/opt/sublime_text/sublime_text -n
OnlyShowIn=Unity;

[Desktop Action Document]
Name=New File
Exec=/opt/sublime_text/sublime_text --command new_file
OnlyShowIn=Unity;

Give attention to Exec= and Icon=

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How do I make my app appear in app chooser?

From Dev

How do I get my Dock to appear on the left in Ubuntu 20.10?

From Dev

How do I get this unicode character to appear on my website?

From Dev

How do i get my repeater results to appear line by line

From Dev

How do I get the Dock icon to appear for a Clojure app on a mac?

From Dev

How do I get a list of running applications by using the command line?

From Dev

How do I move my applications from /Applications to ~/Applications on MacOS

From Dev

How do I get my application to appear on the center of my second monitor, not my main?

From Dev

How do I get the Default app chooser dialog to appear even if the default app is already chosen already?

From Dev

How do I set my startup applications?

From Dev

How do I make my link list appear in order from top to bottom, not right to left?

From Dev

How do I uninstall applications from my applications window

From Dev

How do I get the blue location dot to appear in my Android application?

From Dev

How do I get this HTML canvas animation to appear on top of my image?

From Dev

How do I get hidden HTML to appear only in my popover on click, not elsewhere on the page?

From Dev

How do I get the blue location dot to appear in my Android application?

From Dev

How do I get the name of the month (char) and the Year (date) to appear in my data item and column in Cognos

From Dev

How do I get a drawer to appear above the rest of my web page, so that the underlying elements are not seen and clickable?

From Dev

How do I get the proper characters to appear instead of "?"s in my jSP page?

From Dev

How do I get my menu blocks to appear over banner again?

From Dev

How do I get multiple quotes to appear from my quote generator?

From Dev

How do I get the App Engine Discovery document for my API?

From Dev

How Do I get my App Engine transaction to retry?

From Dev

How do I get the local Currency Code for my android app?

From Dev

How do I get web analytics on traffic to my firebase app?

From Dev

How do I get my app to send a notification when it is closed?

From Dev

How do I get Firebase Phone Authentication to work for my app?

From Dev

How do i get the value from my drop down list

From Dev

How do I get the value of my drop down list

Related Related

  1. 1

    How do I make my app appear in app chooser?

  2. 2

    How do I get my Dock to appear on the left in Ubuntu 20.10?

  3. 3

    How do I get this unicode character to appear on my website?

  4. 4

    How do i get my repeater results to appear line by line

  5. 5

    How do I get the Dock icon to appear for a Clojure app on a mac?

  6. 6

    How do I get a list of running applications by using the command line?

  7. 7

    How do I move my applications from /Applications to ~/Applications on MacOS

  8. 8

    How do I get my application to appear on the center of my second monitor, not my main?

  9. 9

    How do I get the Default app chooser dialog to appear even if the default app is already chosen already?

  10. 10

    How do I set my startup applications?

  11. 11

    How do I make my link list appear in order from top to bottom, not right to left?

  12. 12

    How do I uninstall applications from my applications window

  13. 13

    How do I get the blue location dot to appear in my Android application?

  14. 14

    How do I get this HTML canvas animation to appear on top of my image?

  15. 15

    How do I get hidden HTML to appear only in my popover on click, not elsewhere on the page?

  16. 16

    How do I get the blue location dot to appear in my Android application?

  17. 17

    How do I get the name of the month (char) and the Year (date) to appear in my data item and column in Cognos

  18. 18

    How do I get a drawer to appear above the rest of my web page, so that the underlying elements are not seen and clickable?

  19. 19

    How do I get the proper characters to appear instead of "?"s in my jSP page?

  20. 20

    How do I get my menu blocks to appear over banner again?

  21. 21

    How do I get multiple quotes to appear from my quote generator?

  22. 22

    How do I get the App Engine Discovery document for my API?

  23. 23

    How Do I get my App Engine transaction to retry?

  24. 24

    How do I get the local Currency Code for my android app?

  25. 25

    How do I get web analytics on traffic to my firebase app?

  26. 26

    How do I get my app to send a notification when it is closed?

  27. 27

    How do I get Firebase Phone Authentication to work for my app?

  28. 28

    How do i get the value from my drop down list

  29. 29

    How do I get the value of my drop down list

HotTag

Archive