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!
icons .desktop software-uninstall
add a comment |
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!
icons .desktop software-uninstall
add a comment |
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!
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 at 20:58
Ravexina
30.9k1479107
30.9k1479107
asked Nov 30 at 19:18
Lucy C
5018
5018
add a comment |
add a comment |
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
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 at 18:03
no , nothing is wrong, this simple means there aren't any. then a simplesudo xdg-desktop-menu forceupdate --mode system
should 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 tryingsudo 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
|
show 1 more comment
up vote
0
down vote
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 at 17:11
add a comment |
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
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 at 18:03
no , nothing is wrong, this simple means there aren't any. then a simplesudo xdg-desktop-menu forceupdate --mode system
should 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 tryingsudo 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
|
show 1 more comment
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
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 at 18:03
no , nothing is wrong, this simple means there aren't any. then a simplesudo xdg-desktop-menu forceupdate --mode system
should 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 tryingsudo 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
|
show 1 more comment
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
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 at 21:00
answered Nov 30 at 19:54
db429
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 at 18:03
no , nothing is wrong, this simple means there aren't any. then a simplesudo xdg-desktop-menu forceupdate --mode system
should 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 tryingsudo 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
|
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 at 18:03
no , nothing is wrong, this simple means there aren't any. then a simplesudo xdg-desktop-menu forceupdate --mode system
should 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 tryingsudo 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 system
should 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 system
should 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
|
show 1 more comment
up vote
0
down vote
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 at 17:11
add a comment |
up vote
0
down vote
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 at 17:11
add a comment |
up vote
0
down vote
up vote
0
down vote
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 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
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 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
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.
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.
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