How to remove icon of uninstalled app?
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!

icons .desktop software-uninstall
add a comment |
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!

icons .desktop software-uninstall
add a comment |
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!

icons .desktop software-uninstall
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!

icons .desktop software-uninstall
icons .desktop software-uninstall
edited Nov 30 '18 at 20:58
Ravexina
32.5k1486113
32.5k1486113
asked Nov 30 '18 at 19:18
Lucy CLucy C
6018
6018
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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
Hi! When I runls -la /usr/share/applications/ | grep -i 'ark'andls -la ~/.local/share/applications/ | grep -i 'ark'nothing happens. Is there something I'm doing wrong?
– Lucy C
Dec 2 '18 at 18:03
no , nothing is wrong, this simple means there aren't any. then a simplesudo xdg-desktop-menu forceupdate --mode systemshould do the trick
– db429
Dec 3 '18 at 0:33
ps: stumbled over this one askubuntu.com/questions/40884/…
– db429
Dec 3 '18 at 0:40
Do I have to reboot after tryingsudo xdg-desktop-menu forceupdate --mode system?
– Lucy C
Dec 3 '18 at 3:10
sorry forgot, a simple logout should be enough
– db429
Dec 3 '18 at 5:10
|
show 1 more comment
If you're command-line challenged, you could:
- Position the cursor over the unwanted icon.
- Hold down the Right mouse button. This will bring up a menu.
- Scroll down to "
Move to Trash", and release the mouse button.
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 '18 at 17:11
How can I find the location in file manager?
– Lucy C
Dec 24 '18 at 22:51
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
Hi! When I runls -la /usr/share/applications/ | grep -i 'ark'andls -la ~/.local/share/applications/ | grep -i 'ark'nothing happens. Is there something I'm doing wrong?
– Lucy C
Dec 2 '18 at 18:03
no , nothing is wrong, this simple means there aren't any. then a simplesudo xdg-desktop-menu forceupdate --mode systemshould do the trick
– db429
Dec 3 '18 at 0:33
ps: stumbled over this one askubuntu.com/questions/40884/…
– db429
Dec 3 '18 at 0:40
Do I have to reboot after tryingsudo xdg-desktop-menu forceupdate --mode system?
– Lucy C
Dec 3 '18 at 3:10
sorry forgot, a simple logout should be enough
– db429
Dec 3 '18 at 5:10
|
show 1 more comment
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
Hi! When I runls -la /usr/share/applications/ | grep -i 'ark'andls -la ~/.local/share/applications/ | grep -i 'ark'nothing happens. Is there something I'm doing wrong?
– Lucy C
Dec 2 '18 at 18:03
no , nothing is wrong, this simple means there aren't any. then a simplesudo xdg-desktop-menu forceupdate --mode systemshould do the trick
– db429
Dec 3 '18 at 0:33
ps: stumbled over this one askubuntu.com/questions/40884/…
– db429
Dec 3 '18 at 0:40
Do I have to reboot after tryingsudo xdg-desktop-menu forceupdate --mode system?
– Lucy C
Dec 3 '18 at 3:10
sorry forgot, a simple logout should be enough
– db429
Dec 3 '18 at 5:10
|
show 1 more comment
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
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
edited Nov 30 '18 at 21:00
answered Nov 30 '18 at 19:54
db429db429
1,336517
1,336517
Hi! When I runls -la /usr/share/applications/ | grep -i 'ark'andls -la ~/.local/share/applications/ | grep -i 'ark'nothing happens. Is there something I'm doing wrong?
– Lucy C
Dec 2 '18 at 18:03
no , nothing is wrong, this simple means there aren't any. then a simplesudo xdg-desktop-menu forceupdate --mode systemshould do the trick
– db429
Dec 3 '18 at 0:33
ps: stumbled over this one askubuntu.com/questions/40884/…
– db429
Dec 3 '18 at 0:40
Do I have to reboot after tryingsudo xdg-desktop-menu forceupdate --mode system?
– Lucy C
Dec 3 '18 at 3:10
sorry forgot, a simple logout should be enough
– db429
Dec 3 '18 at 5:10
|
show 1 more comment
Hi! When I runls -la /usr/share/applications/ | grep -i 'ark'andls -la ~/.local/share/applications/ | grep -i 'ark'nothing happens. Is there something I'm doing wrong?
– Lucy C
Dec 2 '18 at 18:03
no , nothing is wrong, this simple means there aren't any. then a simplesudo xdg-desktop-menu forceupdate --mode systemshould do the trick
– db429
Dec 3 '18 at 0:33
ps: stumbled over this one askubuntu.com/questions/40884/…
– db429
Dec 3 '18 at 0:40
Do I have to reboot after tryingsudo xdg-desktop-menu forceupdate --mode system?
– Lucy C
Dec 3 '18 at 3:10
sorry forgot, a simple logout should be enough
– db429
Dec 3 '18 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 '18 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 '18 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 '18 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 '18 at 0:33
ps: stumbled over this one askubuntu.com/questions/40884/…
– db429
Dec 3 '18 at 0:40
ps: stumbled over this one askubuntu.com/questions/40884/…
– db429
Dec 3 '18 at 0:40
Do I have to reboot after trying
sudo xdg-desktop-menu forceupdate --mode system ?– Lucy C
Dec 3 '18 at 3:10
Do I have to reboot after trying
sudo xdg-desktop-menu forceupdate --mode system ?– Lucy C
Dec 3 '18 at 3:10
sorry forgot, a simple logout should be enough
– db429
Dec 3 '18 at 5:10
sorry forgot, a simple logout should be enough
– db429
Dec 3 '18 at 5:10
|
show 1 more comment
If you're command-line challenged, you could:
- Position the cursor over the unwanted icon.
- Hold down the Right mouse button. This will bring up a menu.
- Scroll down to "
Move to Trash", and release the mouse button.
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 '18 at 17:11
How can I find the location in file manager?
– Lucy C
Dec 24 '18 at 22:51
add a comment |
If you're command-line challenged, you could:
- Position the cursor over the unwanted icon.
- Hold down the Right mouse button. This will bring up a menu.
- Scroll down to "
Move to Trash", and release the mouse button.
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 '18 at 17:11
How can I find the location in file manager?
– Lucy C
Dec 24 '18 at 22:51
add a comment |
If you're command-line challenged, you could:
- Position the cursor over the unwanted icon.
- Hold down the Right mouse button. This will bring up a menu.
- Scroll down to "
Move to Trash", and release the mouse button.
If you're command-line challenged, you could:
- Position the cursor over the unwanted icon.
- Hold down the Right mouse button. This will bring up a menu.
- Scroll down to "
Move to Trash", and release the mouse button.
answered Nov 30 '18 at 19:57
waltinatorwaltinator
22.4k74169
22.4k74169
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 '18 at 17:11
How can I find the location in file manager?
– Lucy C
Dec 24 '18 at 22:51
add a comment |
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 '18 at 17:11
How can I find the location in file manager?
– Lucy C
Dec 24 '18 at 22:51
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 '18 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 '18 at 17:11
How can I find the location in file manager?
– Lucy C
Dec 24 '18 at 22:51
How can I find the location in file manager?
– Lucy C
Dec 24 '18 at 22:51
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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