How do I make an application manually extract from a .tar be available on “Show Applications”?












0















I want my application that is portable extract from a .tar, like PopcornTime to be available in the "Show applications" in Ubuntu Bionic Beaver (18.04).



I extract my application in some folder and to run it, i used to run



./folder/'ApplicationRunnable'


I realize that is a lot easier to click on icon, that i created by using to following commands:



sudo apt-get install --no-install-recommends gnome-panel
gnome-desktop-item-edit --create-new ~/Desktop


But in my "Show Application" search, my application can't be found...



How can I make this kind of application appears on my "Show Applications" search?










share|improve this question





























    0















    I want my application that is portable extract from a .tar, like PopcornTime to be available in the "Show applications" in Ubuntu Bionic Beaver (18.04).



    I extract my application in some folder and to run it, i used to run



    ./folder/'ApplicationRunnable'


    I realize that is a lot easier to click on icon, that i created by using to following commands:



    sudo apt-get install --no-install-recommends gnome-panel
    gnome-desktop-item-edit --create-new ~/Desktop


    But in my "Show Application" search, my application can't be found...



    How can I make this kind of application appears on my "Show Applications" search?










    share|improve this question



























      0












      0








      0








      I want my application that is portable extract from a .tar, like PopcornTime to be available in the "Show applications" in Ubuntu Bionic Beaver (18.04).



      I extract my application in some folder and to run it, i used to run



      ./folder/'ApplicationRunnable'


      I realize that is a lot easier to click on icon, that i created by using to following commands:



      sudo apt-get install --no-install-recommends gnome-panel
      gnome-desktop-item-edit --create-new ~/Desktop


      But in my "Show Application" search, my application can't be found...



      How can I make this kind of application appears on my "Show Applications" search?










      share|improve this question
















      I want my application that is portable extract from a .tar, like PopcornTime to be available in the "Show applications" in Ubuntu Bionic Beaver (18.04).



      I extract my application in some folder and to run it, i used to run



      ./folder/'ApplicationRunnable'


      I realize that is a lot easier to click on icon, that i created by using to following commands:



      sudo apt-get install --no-install-recommends gnome-panel
      gnome-desktop-item-edit --create-new ~/Desktop


      But in my "Show Application" search, my application can't be found...



      How can I make this kind of application appears on my "Show Applications" search?







      gnome-shell menu .desktop tar appmenu






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 7 mins ago









      pomsky

      30.3k1193126




      30.3k1193126










      asked 17 mins ago









      Sham FiorinSham Fiorin

      5618




      5618






















          3 Answers
          3






          active

          oldest

          votes


















          1














          If you already have a .desktop file copy it into ~/.local/share/applications.



          If not, see this guide on how to create one.





          share































            0














            Copy the .desktop file generated with gnome-desktop-item-edit in /usr/share/applications





            share








            New contributor




            Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.




























              0














              You need to create a .desktop launcher for the application in your ~/.local/share/applications directory.



              Create an empty text file, name it <application-name>.desktop, and add the following lines to it



              [Desktop Entry]
              Name=Application Name
              Comment=A short description of the application
              Exec=/full/path/to/'ApplicationRunnable'
              Terminal=false
              Type=Application
              Icon=/full/path/to/icon-file


              Then save the file. If it doesn't appear in 'Show Applications', log out and re-login.



              If you already have a working .desktop launcher created with gnome-desktop-item-edit in your ~/Desktop, then just copy it to ~/.local/share/applications.





              share

























                Your Answer








                StackExchange.ready(function() {
                var channelOptions = {
                tags: "".split(" "),
                id: "89"
                };
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function() {
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled) {
                StackExchange.using("snippets", function() {
                createEditor();
                });
                }
                else {
                createEditor();
                }
                });

                function createEditor() {
                StackExchange.prepareEditor({
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: true,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: 10,
                bindNavPrevention: true,
                postfix: "",
                imageUploader: {
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                },
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                });


                }
                });














                draft saved

                draft discarded


















                StackExchange.ready(
                function () {
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1115143%2fhow-do-i-make-an-application-manually-extract-from-a-tar-be-available-on-show%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                3 Answers
                3






                active

                oldest

                votes








                3 Answers
                3






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                1














                If you already have a .desktop file copy it into ~/.local/share/applications.



                If not, see this guide on how to create one.





                share




























                  1














                  If you already have a .desktop file copy it into ~/.local/share/applications.



                  If not, see this guide on how to create one.





                  share


























                    1












                    1








                    1







                    If you already have a .desktop file copy it into ~/.local/share/applications.



                    If not, see this guide on how to create one.





                    share













                    If you already have a .desktop file copy it into ~/.local/share/applications.



                    If not, see this guide on how to create one.






                    share











                    share


                    share










                    answered 9 mins ago









                    HugoHugo

                    691618




                    691618

























                        0














                        Copy the .desktop file generated with gnome-desktop-item-edit in /usr/share/applications





                        share








                        New contributor




                        Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.

























                          0














                          Copy the .desktop file generated with gnome-desktop-item-edit in /usr/share/applications





                          share








                          New contributor




                          Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.























                            0












                            0








                            0







                            Copy the .desktop file generated with gnome-desktop-item-edit in /usr/share/applications





                            share








                            New contributor




                            Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.










                            Copy the .desktop file generated with gnome-desktop-item-edit in /usr/share/applications






                            share








                            New contributor




                            Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.








                            share


                            share






                            New contributor




                            Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.









                            answered 8 mins ago









                            Cristian VrinceanuCristian Vrinceanu

                            213




                            213




                            New contributor




                            Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.





                            New contributor





                            Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.






                            Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.























                                0














                                You need to create a .desktop launcher for the application in your ~/.local/share/applications directory.



                                Create an empty text file, name it <application-name>.desktop, and add the following lines to it



                                [Desktop Entry]
                                Name=Application Name
                                Comment=A short description of the application
                                Exec=/full/path/to/'ApplicationRunnable'
                                Terminal=false
                                Type=Application
                                Icon=/full/path/to/icon-file


                                Then save the file. If it doesn't appear in 'Show Applications', log out and re-login.



                                If you already have a working .desktop launcher created with gnome-desktop-item-edit in your ~/Desktop, then just copy it to ~/.local/share/applications.





                                share






























                                  0














                                  You need to create a .desktop launcher for the application in your ~/.local/share/applications directory.



                                  Create an empty text file, name it <application-name>.desktop, and add the following lines to it



                                  [Desktop Entry]
                                  Name=Application Name
                                  Comment=A short description of the application
                                  Exec=/full/path/to/'ApplicationRunnable'
                                  Terminal=false
                                  Type=Application
                                  Icon=/full/path/to/icon-file


                                  Then save the file. If it doesn't appear in 'Show Applications', log out and re-login.



                                  If you already have a working .desktop launcher created with gnome-desktop-item-edit in your ~/Desktop, then just copy it to ~/.local/share/applications.





                                  share




























                                    0












                                    0








                                    0







                                    You need to create a .desktop launcher for the application in your ~/.local/share/applications directory.



                                    Create an empty text file, name it <application-name>.desktop, and add the following lines to it



                                    [Desktop Entry]
                                    Name=Application Name
                                    Comment=A short description of the application
                                    Exec=/full/path/to/'ApplicationRunnable'
                                    Terminal=false
                                    Type=Application
                                    Icon=/full/path/to/icon-file


                                    Then save the file. If it doesn't appear in 'Show Applications', log out and re-login.



                                    If you already have a working .desktop launcher created with gnome-desktop-item-edit in your ~/Desktop, then just copy it to ~/.local/share/applications.





                                    share















                                    You need to create a .desktop launcher for the application in your ~/.local/share/applications directory.



                                    Create an empty text file, name it <application-name>.desktop, and add the following lines to it



                                    [Desktop Entry]
                                    Name=Application Name
                                    Comment=A short description of the application
                                    Exec=/full/path/to/'ApplicationRunnable'
                                    Terminal=false
                                    Type=Application
                                    Icon=/full/path/to/icon-file


                                    Then save the file. If it doesn't appear in 'Show Applications', log out and re-login.



                                    If you already have a working .desktop launcher created with gnome-desktop-item-edit in your ~/Desktop, then just copy it to ~/.local/share/applications.






                                    share













                                    share


                                    share








                                    edited 4 mins ago

























                                    answered 9 mins ago









                                    pomskypomsky

                                    30.3k1193126




                                    30.3k1193126






























                                        draft saved

                                        draft discarded




















































                                        Thanks for contributing an answer to Ask Ubuntu!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid



                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.


                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function () {
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1115143%2fhow-do-i-make-an-application-manually-extract-from-a-tar-be-available-on-show%23new-answer', 'question_page');
                                        }
                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        Popular posts from this blog

                                        香粉寮

                                        GameSpot