How to remove icon of uninstalled app?











up vote
1
down vote

favorite












I'm using Ubuntu 18.04.1, the other day I installed Ark from the Ubuntu Software app but ended up uninstalling it after a couple minutes because it wasn't working well.



Recently I noticed that the icon is still there so now I'm wondering how to remove it. Thanks in advance!



enter image description here










share|improve this question




























    up vote
    1
    down vote

    favorite












    I'm using Ubuntu 18.04.1, the other day I installed Ark from the Ubuntu Software app but ended up uninstalling it after a couple minutes because it wasn't working well.



    Recently I noticed that the icon is still there so now I'm wondering how to remove it. Thanks in advance!



    enter image description here










    share|improve this question


























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I'm using Ubuntu 18.04.1, the other day I installed Ark from the Ubuntu Software app but ended up uninstalling it after a couple minutes because it wasn't working well.



      Recently I noticed that the icon is still there so now I'm wondering how to remove it. Thanks in advance!



      enter image description here










      share|improve this question















      I'm using Ubuntu 18.04.1, the other day I installed Ark from the Ubuntu Software app but ended up uninstalling it after a couple minutes because it wasn't working well.



      Recently I noticed that the icon is still there so now I'm wondering how to remove it. Thanks in advance!



      enter image description here







      icons .desktop software-uninstall






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 30 at 20:58









      Ravexina

      30.9k1479107




      30.9k1479107










      asked Nov 30 at 19:18









      Lucy C

      5018




      5018






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          1
          down vote













          the standard places where *.desktop-Files are stored are:



          /usr/share/applications/ and



          ~/.local/share/applications/



          To check if there is an ark in these folders I'd in a Terminal (Ctrl+Alt+t) do a:



          ls -la /usr/share/applications/ | grep -i 'ark' and



          ls -la ~/.local/share/applications/ | grep -i 'ark'



          if so I'd delete it with sudo rm <pathtofile>/<*.desktop-file>, sudo is not necessary when deleting the file in your home folder.



          Afterwards, or even if there is no arc*.desktop-File I'd do a forced update to my menu via:



          sudo xdg-desktop-menu forceupdate --mode system






          share|improve this answer























          • Hi! When I run ls -la /usr/share/applications/ | grep -i 'ark' and ls -la ~/.local/share/applications/ | grep -i 'ark' nothing happens. Is there something I'm doing wrong?
            – Lucy C
            Dec 2 at 18:03










          • no , nothing is wrong, this simple means there aren't any. then a simple sudo xdg-desktop-menu forceupdate --mode systemshould do the trick
            – db429
            Dec 3 at 0:33










          • ps: stumbled over this one askubuntu.com/questions/40884/…
            – db429
            Dec 3 at 0:40










          • Do I have to reboot after trying sudo xdg-desktop-menu forceupdate --mode system ?
            – Lucy C
            Dec 3 at 3:10












          • sorry forgot, a simple logout should be enough
            – db429
            Dec 3 at 5:10


















          up vote
          0
          down vote













          If you're command-line challenged, you could:




          1. Position the cursor over the unwanted icon.

          2. Hold down the Right mouse button. This will bring up a menu.

          3. Scroll down to "Move to Trash", and release the mouse button.






          share|improve this answer





















          • You mean after opening the correct location in file manager? Otherwise this may very well be interpreted as "right clicking on the app icon in 'Show Applications'" (as in screenshot) which I believe won't work.
            – pomsky
            Dec 1 at 17:11













          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',
          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%2f1097501%2fhow-to-remove-icon-of-uninstalled-app%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote













          the standard places where *.desktop-Files are stored are:



          /usr/share/applications/ and



          ~/.local/share/applications/



          To check if there is an ark in these folders I'd in a Terminal (Ctrl+Alt+t) do a:



          ls -la /usr/share/applications/ | grep -i 'ark' and



          ls -la ~/.local/share/applications/ | grep -i 'ark'



          if so I'd delete it with sudo rm <pathtofile>/<*.desktop-file>, sudo is not necessary when deleting the file in your home folder.



          Afterwards, or even if there is no arc*.desktop-File I'd do a forced update to my menu via:



          sudo xdg-desktop-menu forceupdate --mode system






          share|improve this answer























          • Hi! When I run ls -la /usr/share/applications/ | grep -i 'ark' and ls -la ~/.local/share/applications/ | grep -i 'ark' nothing happens. Is there something I'm doing wrong?
            – Lucy C
            Dec 2 at 18:03










          • no , nothing is wrong, this simple means there aren't any. then a simple sudo xdg-desktop-menu forceupdate --mode systemshould do the trick
            – db429
            Dec 3 at 0:33










          • ps: stumbled over this one askubuntu.com/questions/40884/…
            – db429
            Dec 3 at 0:40










          • Do I have to reboot after trying sudo xdg-desktop-menu forceupdate --mode system ?
            – Lucy C
            Dec 3 at 3:10












          • sorry forgot, a simple logout should be enough
            – db429
            Dec 3 at 5:10















          up vote
          1
          down vote













          the standard places where *.desktop-Files are stored are:



          /usr/share/applications/ and



          ~/.local/share/applications/



          To check if there is an ark in these folders I'd in a Terminal (Ctrl+Alt+t) do a:



          ls -la /usr/share/applications/ | grep -i 'ark' and



          ls -la ~/.local/share/applications/ | grep -i 'ark'



          if so I'd delete it with sudo rm <pathtofile>/<*.desktop-file>, sudo is not necessary when deleting the file in your home folder.



          Afterwards, or even if there is no arc*.desktop-File I'd do a forced update to my menu via:



          sudo xdg-desktop-menu forceupdate --mode system






          share|improve this answer























          • Hi! When I run ls -la /usr/share/applications/ | grep -i 'ark' and ls -la ~/.local/share/applications/ | grep -i 'ark' nothing happens. Is there something I'm doing wrong?
            – Lucy C
            Dec 2 at 18:03










          • no , nothing is wrong, this simple means there aren't any. then a simple sudo xdg-desktop-menu forceupdate --mode systemshould do the trick
            – db429
            Dec 3 at 0:33










          • ps: stumbled over this one askubuntu.com/questions/40884/…
            – db429
            Dec 3 at 0:40










          • Do I have to reboot after trying sudo xdg-desktop-menu forceupdate --mode system ?
            – Lucy C
            Dec 3 at 3:10












          • sorry forgot, a simple logout should be enough
            – db429
            Dec 3 at 5:10













          up vote
          1
          down vote










          up vote
          1
          down vote









          the standard places where *.desktop-Files are stored are:



          /usr/share/applications/ and



          ~/.local/share/applications/



          To check if there is an ark in these folders I'd in a Terminal (Ctrl+Alt+t) do a:



          ls -la /usr/share/applications/ | grep -i 'ark' and



          ls -la ~/.local/share/applications/ | grep -i 'ark'



          if so I'd delete it with sudo rm <pathtofile>/<*.desktop-file>, sudo is not necessary when deleting the file in your home folder.



          Afterwards, or even if there is no arc*.desktop-File I'd do a forced update to my menu via:



          sudo xdg-desktop-menu forceupdate --mode system






          share|improve this answer














          the standard places where *.desktop-Files are stored are:



          /usr/share/applications/ and



          ~/.local/share/applications/



          To check if there is an ark in these folders I'd in a Terminal (Ctrl+Alt+t) do a:



          ls -la /usr/share/applications/ | grep -i 'ark' and



          ls -la ~/.local/share/applications/ | grep -i 'ark'



          if so I'd delete it with sudo rm <pathtofile>/<*.desktop-file>, sudo is not necessary when deleting the file in your home folder.



          Afterwards, or even if there is no arc*.desktop-File I'd do a forced update to my menu via:



          sudo xdg-desktop-menu forceupdate --mode system







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 30 at 21:00

























          answered Nov 30 at 19:54









          db429

          1,336517




          1,336517












          • Hi! When I run ls -la /usr/share/applications/ | grep -i 'ark' and ls -la ~/.local/share/applications/ | grep -i 'ark' nothing happens. Is there something I'm doing wrong?
            – Lucy C
            Dec 2 at 18:03










          • no , nothing is wrong, this simple means there aren't any. then a simple sudo xdg-desktop-menu forceupdate --mode systemshould do the trick
            – db429
            Dec 3 at 0:33










          • ps: stumbled over this one askubuntu.com/questions/40884/…
            – db429
            Dec 3 at 0:40










          • Do I have to reboot after trying sudo xdg-desktop-menu forceupdate --mode system ?
            – Lucy C
            Dec 3 at 3:10












          • sorry forgot, a simple logout should be enough
            – db429
            Dec 3 at 5:10


















          • Hi! When I run ls -la /usr/share/applications/ | grep -i 'ark' and ls -la ~/.local/share/applications/ | grep -i 'ark' nothing happens. Is there something I'm doing wrong?
            – Lucy C
            Dec 2 at 18:03










          • no , nothing is wrong, this simple means there aren't any. then a simple sudo xdg-desktop-menu forceupdate --mode systemshould do the trick
            – db429
            Dec 3 at 0:33










          • ps: stumbled over this one askubuntu.com/questions/40884/…
            – db429
            Dec 3 at 0:40










          • Do I have to reboot after trying sudo xdg-desktop-menu forceupdate --mode system ?
            – Lucy C
            Dec 3 at 3:10












          • sorry forgot, a simple logout should be enough
            – db429
            Dec 3 at 5:10
















          Hi! When I run ls -la /usr/share/applications/ | grep -i 'ark' and ls -la ~/.local/share/applications/ | grep -i 'ark' nothing happens. Is there something I'm doing wrong?
          – Lucy C
          Dec 2 at 18:03




          Hi! When I run ls -la /usr/share/applications/ | grep -i 'ark' and ls -la ~/.local/share/applications/ | grep -i 'ark' nothing happens. Is there something I'm doing wrong?
          – Lucy C
          Dec 2 at 18:03












          no , nothing is wrong, this simple means there aren't any. then a simple sudo xdg-desktop-menu forceupdate --mode systemshould do the trick
          – db429
          Dec 3 at 0:33




          no , nothing is wrong, this simple means there aren't any. then a simple sudo xdg-desktop-menu forceupdate --mode systemshould do the trick
          – db429
          Dec 3 at 0:33












          ps: stumbled over this one askubuntu.com/questions/40884/…
          – db429
          Dec 3 at 0:40




          ps: stumbled over this one askubuntu.com/questions/40884/…
          – db429
          Dec 3 at 0:40












          Do I have to reboot after trying sudo xdg-desktop-menu forceupdate --mode system ?
          – Lucy C
          Dec 3 at 3:10






          Do I have to reboot after trying sudo xdg-desktop-menu forceupdate --mode system ?
          – Lucy C
          Dec 3 at 3:10














          sorry forgot, a simple logout should be enough
          – db429
          Dec 3 at 5:10




          sorry forgot, a simple logout should be enough
          – db429
          Dec 3 at 5:10












          up vote
          0
          down vote













          If you're command-line challenged, you could:




          1. Position the cursor over the unwanted icon.

          2. Hold down the Right mouse button. This will bring up a menu.

          3. Scroll down to "Move to Trash", and release the mouse button.






          share|improve this answer





















          • You mean after opening the correct location in file manager? Otherwise this may very well be interpreted as "right clicking on the app icon in 'Show Applications'" (as in screenshot) which I believe won't work.
            – pomsky
            Dec 1 at 17:11

















          up vote
          0
          down vote













          If you're command-line challenged, you could:




          1. Position the cursor over the unwanted icon.

          2. Hold down the Right mouse button. This will bring up a menu.

          3. Scroll down to "Move to Trash", and release the mouse button.






          share|improve this answer





















          • You mean after opening the correct location in file manager? Otherwise this may very well be interpreted as "right clicking on the app icon in 'Show Applications'" (as in screenshot) which I believe won't work.
            – pomsky
            Dec 1 at 17:11















          up vote
          0
          down vote










          up vote
          0
          down vote









          If you're command-line challenged, you could:




          1. Position the cursor over the unwanted icon.

          2. Hold down the Right mouse button. This will bring up a menu.

          3. Scroll down to "Move to Trash", and release the mouse button.






          share|improve this answer












          If you're command-line challenged, you could:




          1. Position the cursor over the unwanted icon.

          2. Hold down the Right mouse button. This will bring up a menu.

          3. Scroll down to "Move to Trash", and release the mouse button.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 30 at 19:57









          waltinator

          21.8k74169




          21.8k74169












          • You mean after opening the correct location in file manager? Otherwise this may very well be interpreted as "right clicking on the app icon in 'Show Applications'" (as in screenshot) which I believe won't work.
            – pomsky
            Dec 1 at 17:11




















          • You mean after opening the correct location in file manager? Otherwise this may very well be interpreted as "right clicking on the app icon in 'Show Applications'" (as in screenshot) which I believe won't work.
            – pomsky
            Dec 1 at 17:11


















          You mean after opening the correct location in file manager? Otherwise this may very well be interpreted as "right clicking on the app icon in 'Show Applications'" (as in screenshot) which I believe won't work.
          – pomsky
          Dec 1 at 17:11






          You mean after opening the correct location in file manager? Otherwise this may very well be interpreted as "right clicking on the app icon in 'Show Applications'" (as in screenshot) which I believe won't work.
          – pomsky
          Dec 1 at 17:11




















          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.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • 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%2f1097501%2fhow-to-remove-icon-of-uninstalled-app%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

          flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

          Mangá

           ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕