Sublime Text 3 icon in Ubuntu
Recently Sublime Text 3 came out (finally out of beta!). The new version has a new icon. However when I upgraded, I still have the old icon in the launcher.
How can I fix it?
sublime-text
add a comment |
Recently Sublime Text 3 came out (finally out of beta!). The new version has a new icon. However when I upgraded, I still have the old icon in the launcher.
How can I fix it?
sublime-text
add a comment |
Recently Sublime Text 3 came out (finally out of beta!). The new version has a new icon. However when I upgraded, I still have the old icon in the launcher.
How can I fix it?
sublime-text
Recently Sublime Text 3 came out (finally out of beta!). The new version has a new icon. However when I upgraded, I still have the old icon in the launcher.
How can I fix it?
sublime-text
sublime-text
asked Sep 20 '17 at 18:25
beckobecko
3,350144179
3,350144179
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
in /usr/share/applications you will see the .desktop file for sublime. Open it and change the path of the icon.
I prefer using alacarte
, wherein I can directly change the icon from a GUI. Launch alacarte by typing alacarte. If you dnt have it then sudo apt-get install alacarte.
But I guess, for just one single application, I think it is good to edit the .desktop file manually. Remember there are many icons for sublime and the 48*48 fits the best.
Where I can locate the new icon?
– becko
Oct 5 '17 at 14:52
1
@becko whereever_youhave_installed_sublime/sublime_text_3/Icon/48x48/sublime-text.png
– infoclogged
Oct 5 '17 at 17:47
add a comment |
I was dissatisfied with @infoclogged's answer, since the solution seems hacky and the answer doesn't explain why this is happening in the first place, so I dug into this a bit further.
Themed Icons
In Ubuntu Budgie, and possibly other Ubuntu flavors, Gnome uses an icon theme that includes replacement icons for Sublime Text, Firefox, Thunderbird, and other popular applications. These replacement icons are used instead of the icon packaged with the current version of Sublime Text (and other respective programs).
As noted, /usr/share/applications/sublime_text.desktop
refers to an icon named sublime-text
. The path and file extension are filled in by Gnome, based on the theme and the size of the icon.
Sizing
If you use find
you'll notice that there are multiple copies of the Sublime Text icon in different sizes. These are automatically selected by Gnome depending on your desktop resolution, DPI, and the size of the UI element that is using the icon (menu, dock, tray icons, etc.).
$ find / -name sublime-text.png 2>/dev/null
/usr/share/icons/hicolor/48x48/apps/sublime-text.png
/usr/share/icons/hicolor/128x128/apps/sublime-text.png
/usr/share/icons/hicolor/256x256/apps/sublime-text.png
...
/usr/share/icons/Moka/48x48/apps/sublime-text.png
/usr/share/icons/Moka/64x64/apps/sublime-text.png
...
/opt/sublime_text/Icon/48x48/sublime-text.png
/opt/sublime_text/Icon/16x16/sublime-text.png
/opt/sublime_text/Icon/128x128/sublime-text.png
/opt/sublime_text/Icon/256x256/sublime-text.png
/opt/sublime_text/Icon/32x32/sublime-text.png
Gnome Icon Themes
On my system, which uses Ubuntu Budgie 18.04, the default Gnome theme is Pocillo, and the default icon set is based on Moka. You'll notice if you open the relevant files that Moka provides the "rounded square" icon style for Sublime Text, alongside similar replacement icons for many popular apps like Firefox and Thunderbird. This is where the errant icon is coming from.
Changing the Icon
There are a few ways to use the packaged icon:
- Edit the
.desktop
file to use a full path to a specific file as @infoclogged suggested, though this breaks the sizing code mentioned earlier. - Change your icon theme using the
gnome-tweaks
tool found in thegnome-tweak-tools
package so the vendor's packaged icons are used, instead of the theme's icons. - Edit the theme / delete the theme's Sublime Text icon files, though this will likely break if the theme is updated.
- Convince upstream not to ship ugly icons for Sublime Text. This may already be done.
The "correct" way to solve this is to change your icon theme. This uses the built-in features of Gnome, and should continue to work across OS upgrades, package un/re/installs, etc. However, you can also apply a surgical change by editing the .desktop
file or deleting the sublime text icons from your theme — just don't be surprised if those changes poof during a package update in the future.
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%2f957834%2fsublime-text-3-icon-in-ubuntu%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
in /usr/share/applications you will see the .desktop file for sublime. Open it and change the path of the icon.
I prefer using alacarte
, wherein I can directly change the icon from a GUI. Launch alacarte by typing alacarte. If you dnt have it then sudo apt-get install alacarte.
But I guess, for just one single application, I think it is good to edit the .desktop file manually. Remember there are many icons for sublime and the 48*48 fits the best.
Where I can locate the new icon?
– becko
Oct 5 '17 at 14:52
1
@becko whereever_youhave_installed_sublime/sublime_text_3/Icon/48x48/sublime-text.png
– infoclogged
Oct 5 '17 at 17:47
add a comment |
in /usr/share/applications you will see the .desktop file for sublime. Open it and change the path of the icon.
I prefer using alacarte
, wherein I can directly change the icon from a GUI. Launch alacarte by typing alacarte. If you dnt have it then sudo apt-get install alacarte.
But I guess, for just one single application, I think it is good to edit the .desktop file manually. Remember there are many icons for sublime and the 48*48 fits the best.
Where I can locate the new icon?
– becko
Oct 5 '17 at 14:52
1
@becko whereever_youhave_installed_sublime/sublime_text_3/Icon/48x48/sublime-text.png
– infoclogged
Oct 5 '17 at 17:47
add a comment |
in /usr/share/applications you will see the .desktop file for sublime. Open it and change the path of the icon.
I prefer using alacarte
, wherein I can directly change the icon from a GUI. Launch alacarte by typing alacarte. If you dnt have it then sudo apt-get install alacarte.
But I guess, for just one single application, I think it is good to edit the .desktop file manually. Remember there are many icons for sublime and the 48*48 fits the best.
in /usr/share/applications you will see the .desktop file for sublime. Open it and change the path of the icon.
I prefer using alacarte
, wherein I can directly change the icon from a GUI. Launch alacarte by typing alacarte. If you dnt have it then sudo apt-get install alacarte.
But I guess, for just one single application, I think it is good to edit the .desktop file manually. Remember there are many icons for sublime and the 48*48 fits the best.
answered Sep 20 '17 at 18:32
infocloggedinfoclogged
396113
396113
Where I can locate the new icon?
– becko
Oct 5 '17 at 14:52
1
@becko whereever_youhave_installed_sublime/sublime_text_3/Icon/48x48/sublime-text.png
– infoclogged
Oct 5 '17 at 17:47
add a comment |
Where I can locate the new icon?
– becko
Oct 5 '17 at 14:52
1
@becko whereever_youhave_installed_sublime/sublime_text_3/Icon/48x48/sublime-text.png
– infoclogged
Oct 5 '17 at 17:47
Where I can locate the new icon?
– becko
Oct 5 '17 at 14:52
Where I can locate the new icon?
– becko
Oct 5 '17 at 14:52
1
1
@becko whereever_youhave_installed_sublime/sublime_text_3/Icon/48x48/sublime-text.png
– infoclogged
Oct 5 '17 at 17:47
@becko whereever_youhave_installed_sublime/sublime_text_3/Icon/48x48/sublime-text.png
– infoclogged
Oct 5 '17 at 17:47
add a comment |
I was dissatisfied with @infoclogged's answer, since the solution seems hacky and the answer doesn't explain why this is happening in the first place, so I dug into this a bit further.
Themed Icons
In Ubuntu Budgie, and possibly other Ubuntu flavors, Gnome uses an icon theme that includes replacement icons for Sublime Text, Firefox, Thunderbird, and other popular applications. These replacement icons are used instead of the icon packaged with the current version of Sublime Text (and other respective programs).
As noted, /usr/share/applications/sublime_text.desktop
refers to an icon named sublime-text
. The path and file extension are filled in by Gnome, based on the theme and the size of the icon.
Sizing
If you use find
you'll notice that there are multiple copies of the Sublime Text icon in different sizes. These are automatically selected by Gnome depending on your desktop resolution, DPI, and the size of the UI element that is using the icon (menu, dock, tray icons, etc.).
$ find / -name sublime-text.png 2>/dev/null
/usr/share/icons/hicolor/48x48/apps/sublime-text.png
/usr/share/icons/hicolor/128x128/apps/sublime-text.png
/usr/share/icons/hicolor/256x256/apps/sublime-text.png
...
/usr/share/icons/Moka/48x48/apps/sublime-text.png
/usr/share/icons/Moka/64x64/apps/sublime-text.png
...
/opt/sublime_text/Icon/48x48/sublime-text.png
/opt/sublime_text/Icon/16x16/sublime-text.png
/opt/sublime_text/Icon/128x128/sublime-text.png
/opt/sublime_text/Icon/256x256/sublime-text.png
/opt/sublime_text/Icon/32x32/sublime-text.png
Gnome Icon Themes
On my system, which uses Ubuntu Budgie 18.04, the default Gnome theme is Pocillo, and the default icon set is based on Moka. You'll notice if you open the relevant files that Moka provides the "rounded square" icon style for Sublime Text, alongside similar replacement icons for many popular apps like Firefox and Thunderbird. This is where the errant icon is coming from.
Changing the Icon
There are a few ways to use the packaged icon:
- Edit the
.desktop
file to use a full path to a specific file as @infoclogged suggested, though this breaks the sizing code mentioned earlier. - Change your icon theme using the
gnome-tweaks
tool found in thegnome-tweak-tools
package so the vendor's packaged icons are used, instead of the theme's icons. - Edit the theme / delete the theme's Sublime Text icon files, though this will likely break if the theme is updated.
- Convince upstream not to ship ugly icons for Sublime Text. This may already be done.
The "correct" way to solve this is to change your icon theme. This uses the built-in features of Gnome, and should continue to work across OS upgrades, package un/re/installs, etc. However, you can also apply a surgical change by editing the .desktop
file or deleting the sublime text icons from your theme — just don't be surprised if those changes poof during a package update in the future.
add a comment |
I was dissatisfied with @infoclogged's answer, since the solution seems hacky and the answer doesn't explain why this is happening in the first place, so I dug into this a bit further.
Themed Icons
In Ubuntu Budgie, and possibly other Ubuntu flavors, Gnome uses an icon theme that includes replacement icons for Sublime Text, Firefox, Thunderbird, and other popular applications. These replacement icons are used instead of the icon packaged with the current version of Sublime Text (and other respective programs).
As noted, /usr/share/applications/sublime_text.desktop
refers to an icon named sublime-text
. The path and file extension are filled in by Gnome, based on the theme and the size of the icon.
Sizing
If you use find
you'll notice that there are multiple copies of the Sublime Text icon in different sizes. These are automatically selected by Gnome depending on your desktop resolution, DPI, and the size of the UI element that is using the icon (menu, dock, tray icons, etc.).
$ find / -name sublime-text.png 2>/dev/null
/usr/share/icons/hicolor/48x48/apps/sublime-text.png
/usr/share/icons/hicolor/128x128/apps/sublime-text.png
/usr/share/icons/hicolor/256x256/apps/sublime-text.png
...
/usr/share/icons/Moka/48x48/apps/sublime-text.png
/usr/share/icons/Moka/64x64/apps/sublime-text.png
...
/opt/sublime_text/Icon/48x48/sublime-text.png
/opt/sublime_text/Icon/16x16/sublime-text.png
/opt/sublime_text/Icon/128x128/sublime-text.png
/opt/sublime_text/Icon/256x256/sublime-text.png
/opt/sublime_text/Icon/32x32/sublime-text.png
Gnome Icon Themes
On my system, which uses Ubuntu Budgie 18.04, the default Gnome theme is Pocillo, and the default icon set is based on Moka. You'll notice if you open the relevant files that Moka provides the "rounded square" icon style for Sublime Text, alongside similar replacement icons for many popular apps like Firefox and Thunderbird. This is where the errant icon is coming from.
Changing the Icon
There are a few ways to use the packaged icon:
- Edit the
.desktop
file to use a full path to a specific file as @infoclogged suggested, though this breaks the sizing code mentioned earlier. - Change your icon theme using the
gnome-tweaks
tool found in thegnome-tweak-tools
package so the vendor's packaged icons are used, instead of the theme's icons. - Edit the theme / delete the theme's Sublime Text icon files, though this will likely break if the theme is updated.
- Convince upstream not to ship ugly icons for Sublime Text. This may already be done.
The "correct" way to solve this is to change your icon theme. This uses the built-in features of Gnome, and should continue to work across OS upgrades, package un/re/installs, etc. However, you can also apply a surgical change by editing the .desktop
file or deleting the sublime text icons from your theme — just don't be surprised if those changes poof during a package update in the future.
add a comment |
I was dissatisfied with @infoclogged's answer, since the solution seems hacky and the answer doesn't explain why this is happening in the first place, so I dug into this a bit further.
Themed Icons
In Ubuntu Budgie, and possibly other Ubuntu flavors, Gnome uses an icon theme that includes replacement icons for Sublime Text, Firefox, Thunderbird, and other popular applications. These replacement icons are used instead of the icon packaged with the current version of Sublime Text (and other respective programs).
As noted, /usr/share/applications/sublime_text.desktop
refers to an icon named sublime-text
. The path and file extension are filled in by Gnome, based on the theme and the size of the icon.
Sizing
If you use find
you'll notice that there are multiple copies of the Sublime Text icon in different sizes. These are automatically selected by Gnome depending on your desktop resolution, DPI, and the size of the UI element that is using the icon (menu, dock, tray icons, etc.).
$ find / -name sublime-text.png 2>/dev/null
/usr/share/icons/hicolor/48x48/apps/sublime-text.png
/usr/share/icons/hicolor/128x128/apps/sublime-text.png
/usr/share/icons/hicolor/256x256/apps/sublime-text.png
...
/usr/share/icons/Moka/48x48/apps/sublime-text.png
/usr/share/icons/Moka/64x64/apps/sublime-text.png
...
/opt/sublime_text/Icon/48x48/sublime-text.png
/opt/sublime_text/Icon/16x16/sublime-text.png
/opt/sublime_text/Icon/128x128/sublime-text.png
/opt/sublime_text/Icon/256x256/sublime-text.png
/opt/sublime_text/Icon/32x32/sublime-text.png
Gnome Icon Themes
On my system, which uses Ubuntu Budgie 18.04, the default Gnome theme is Pocillo, and the default icon set is based on Moka. You'll notice if you open the relevant files that Moka provides the "rounded square" icon style for Sublime Text, alongside similar replacement icons for many popular apps like Firefox and Thunderbird. This is where the errant icon is coming from.
Changing the Icon
There are a few ways to use the packaged icon:
- Edit the
.desktop
file to use a full path to a specific file as @infoclogged suggested, though this breaks the sizing code mentioned earlier. - Change your icon theme using the
gnome-tweaks
tool found in thegnome-tweak-tools
package so the vendor's packaged icons are used, instead of the theme's icons. - Edit the theme / delete the theme's Sublime Text icon files, though this will likely break if the theme is updated.
- Convince upstream not to ship ugly icons for Sublime Text. This may already be done.
The "correct" way to solve this is to change your icon theme. This uses the built-in features of Gnome, and should continue to work across OS upgrades, package un/re/installs, etc. However, you can also apply a surgical change by editing the .desktop
file or deleting the sublime text icons from your theme — just don't be surprised if those changes poof during a package update in the future.
I was dissatisfied with @infoclogged's answer, since the solution seems hacky and the answer doesn't explain why this is happening in the first place, so I dug into this a bit further.
Themed Icons
In Ubuntu Budgie, and possibly other Ubuntu flavors, Gnome uses an icon theme that includes replacement icons for Sublime Text, Firefox, Thunderbird, and other popular applications. These replacement icons are used instead of the icon packaged with the current version of Sublime Text (and other respective programs).
As noted, /usr/share/applications/sublime_text.desktop
refers to an icon named sublime-text
. The path and file extension are filled in by Gnome, based on the theme and the size of the icon.
Sizing
If you use find
you'll notice that there are multiple copies of the Sublime Text icon in different sizes. These are automatically selected by Gnome depending on your desktop resolution, DPI, and the size of the UI element that is using the icon (menu, dock, tray icons, etc.).
$ find / -name sublime-text.png 2>/dev/null
/usr/share/icons/hicolor/48x48/apps/sublime-text.png
/usr/share/icons/hicolor/128x128/apps/sublime-text.png
/usr/share/icons/hicolor/256x256/apps/sublime-text.png
...
/usr/share/icons/Moka/48x48/apps/sublime-text.png
/usr/share/icons/Moka/64x64/apps/sublime-text.png
...
/opt/sublime_text/Icon/48x48/sublime-text.png
/opt/sublime_text/Icon/16x16/sublime-text.png
/opt/sublime_text/Icon/128x128/sublime-text.png
/opt/sublime_text/Icon/256x256/sublime-text.png
/opt/sublime_text/Icon/32x32/sublime-text.png
Gnome Icon Themes
On my system, which uses Ubuntu Budgie 18.04, the default Gnome theme is Pocillo, and the default icon set is based on Moka. You'll notice if you open the relevant files that Moka provides the "rounded square" icon style for Sublime Text, alongside similar replacement icons for many popular apps like Firefox and Thunderbird. This is where the errant icon is coming from.
Changing the Icon
There are a few ways to use the packaged icon:
- Edit the
.desktop
file to use a full path to a specific file as @infoclogged suggested, though this breaks the sizing code mentioned earlier. - Change your icon theme using the
gnome-tweaks
tool found in thegnome-tweak-tools
package so the vendor's packaged icons are used, instead of the theme's icons. - Edit the theme / delete the theme's Sublime Text icon files, though this will likely break if the theme is updated.
- Convince upstream not to ship ugly icons for Sublime Text. This may already be done.
The "correct" way to solve this is to change your icon theme. This uses the built-in features of Gnome, and should continue to work across OS upgrades, package un/re/installs, etc. However, you can also apply a surgical change by editing the .desktop
file or deleting the sublime text icons from your theme — just don't be surprised if those changes poof during a package update in the future.
answered yesterday
banzaimonkeybanzaimonkey
1163
1163
add a comment |
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%2f957834%2fsublime-text-3-icon-in-ubuntu%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