PDA

View Full Version : HOWTO: Take back the Firefox Logo


Sionide
April 27th, 2005, 11:48 AM
HOWTO: Get rid of that blue globe thing and put the original Firefox Logo where it belongs!

Why would I want to do this?
To me, Firefox looks kinda weird without its unique icon. The logo itself is incredible, it's eye-catching, colourful and sexy :P For more information on the logo, click here (http://www.actsofvolition.com/archives/2004/february/brandingmozilla) and here (http://www.spreadfirefox.com/?q=node/view/3064) and here. (http://www.hicksdesign.co.uk/journal/377/branding_firefox")


Brief Overview
1 - Download the original Firefox Logo (and associated icons) in png format
2 - Rename and copy a few files to various locations
3 - Log out / Log in to apply the changes
It's that simple.


Take Back the Firefox Logo

#1 - You will need two versions of the Firefox Logo.

The first is the actual logo file, in .png format. (right-click -> save image as)

http://img105.echo.cx/img105/1515/firefoxrgb2oa.png

The second is the "document" icon, indicating for example, that a file has a .htm extension which opens it in Firefox. (right-click -> save image as)

http://img231.echo.cx/img231/5930/document8nq.png

#2 - Preparing the files

You will need to rename the files you just downloaded in the following way;


mv firefoxrgb2oa.png mozilla-firefox.png

mv document8nq.png document.png


#3 - You are now ready to begin replacing the old icons

(At this point, you may wish to make backups of the old icons for future reference - simple navigate to the mentioned directories and move the old files out before replacing them with the new icons)

There are three directories which contain Mozilla Firefox icons, they are as follows;

/usr/share/pixmaps - is the location of the icons for the launcher
/usr/lib/mozilla-firefox/icons - is the location of the icons the application uses
/usr/lib/mozilla-firefox/chrome/icons/default - is the 2nd location of application icons

You will need root access to those directories, using the sudo command from the command line helps. I also assume that the files you downloaded have been placed in your ~home directory.


sudo cp mozilla-firefox.png /usr/share/pixmaps/mozilla-firefox.png

sudo cp mozilla-firefox.png /usr/share/pixmaps/mozilla-firefox.xpm



sudo cp mozilla-firefox.png /usr/lib/mozilla-firefox/icons/default.xpm

sudo cp document.png /usr/lib/mozilla-firefox/icons/document.png


and finally;


sudo cp mozilla-firefox.png /usr/lib/mozilla-firefox/chrome/icons/default/default.xpm


#4 - the final step, you're nearly there!

Log out and log back in. Behold, the Firefox logo is back with avengence!! :D

Or restart X using "Ctrl+Alt+Backspace"

#5 - optional extras

Make an alias, to put all the commands into one easy one. I've done this;

sionide@sphinx:~$ alias firefoxicons='sudo cp mozilla-firefox.png /usr/share/pixmaps/mozilla-firefox.png; sudo cp mozilla-firefox.png /usr/share/pixmaps/mozilla-firefox.xpm; sudo cp mozilla-firefox.png /usr/lib/mozilla-firefox/icons/default.xpm; sudo cp document.png /usr/lib/mozilla-firefox/icons/document.png; sudo cp mozilla-firefox.png /usr/lib/mozilla-firefox/chrome/icons/default/default.xpm'

Alternatively you could write a bash script to do it for you...

_____________________________________

This HOWTO is based on this (http://ubuntuforums.org/showthread.php?t=29908) thread. Thanks to bored2k and panickedthumb for their input.
Feedback will be appriciated as this is my first HOWTO :)

Sniffer
April 27th, 2005, 11:56 AM
Simple

But nice, thks for your work.

ssam
April 27th, 2005, 11:59 AM
just to make this work from other directorys, you might want to use absolute paths, ie
sudo cp mozilla-firefox.png /usr/share/pixmaps/mozilla-firefox.png
instead of
sudo cp mozilla-firefox.png ../../usr/share/pixmaps/mozilla-firefox.png

and also (correct me if i am wrong), but i dont think renaming the files to xpm from png is a good idea. they are still png files but with a potential confusing file name.

you could install imagemagick and use
convert something.png something.xpm
check the man page, i think that syntax is right

it would be good if mozilla.org and debian could agree a way for this icon to be included, but i can't remember the reasons behind it.

Sionide
April 27th, 2005, 12:15 PM
and also (correct me if i am wrong), but i dont think renaming the files to xpm from png is a good idea. they are still png files but with a potential confusing file name.

you could install imagemagick and use
convert something.png something.xpm
check the man page, i think that syntax is right

Perhaps this is for another HOWTO...

I just tried it and the coverted .xpm didn't appear to have the same transparent areas as the renamed .png

I did it that way and haven't had any problems.

Thanks for your other point, I've made those changes..

ow50
April 27th, 2005, 12:40 PM
The second is the "document" icon, indicating for example, that a file has a .htm extension which opens it in Firefox.

Is the document icon actually used somewhere?

I just tried it and the coverted .xpm didn't appear to have the same transparent areas as the renamed .png

You can do the conversion with GIMP. Just open the png and save as xpm. The result looks to me about as good as an xpm can look.

Sionide
April 27th, 2005, 12:47 PM
Is the document icon actually used somewhere?

You can do the conversion with GIMP. Just open the png and save as xpm. The result looks to me about as good as an xpm can look.

First question: No idea, perhaps... That was just an example of where I know its used.

Second question: Yeah, could be - but as I say, I just renamed the file and it hasn't had any really detrimental effects. So for the sake of simplicity I'm inclined to leave it how it is, at least for the time being?

jasplund
April 27th, 2005, 01:04 PM
I suppose this would work for thunderbird as well. Anyone knows where to find the TB logo?

thechitowncubs
April 27th, 2005, 01:13 PM
I suppose this would work for thunderbird as well. Anyone knows where to find the TB logo?
why isn't this used by default?

jasplund
April 27th, 2005, 01:17 PM
Nope itīs a simple and ugly envelope with a really small blue bird. I found the real one here http://nilesh.org/weblog/2004/04/new-thunderbird-logo/ though

bored2k
April 27th, 2005, 01:18 PM
Nice howto Sionide. Turned out better than I imagined ;). Cheers.

Sionide
April 27th, 2005, 01:19 PM
why isn't this used by default?

It's strange, both logos are under weird licenses from the Mozilla Foundation which doesn't allow them to bundled into distributions, which I find mad but they must have their reasons. I'm fairly sure other distributions have similar issues. I can't remember the specifics though so if anyone can shed some more light on this, that would be good.

I don't use Thunderbird for email but the process of logo changing will definately be similar. Have a look on spreadfirefox.com (http://www.spreadfirefox.com/) for the actual logos.

Nice howto Sionide. Turned out better than I imagined ;) Cheers.

bored2k
April 27th, 2005, 01:25 PM
It's strange, both logos are under weird licenses from the Mozilla Foundation which doesn't allow them to bundled into distributions, which I find mad but they must have their reasons. I'm fairly sure other distributions have similar issues. I can't remember the specifics though so if anyone can shed some more light on this, that would be good.

I don't use Thunderbird for email but the process of logo changing will definately be similar. Have a look on spreadfirefox.com (http://www.spreadfirefox.com/) for the actual logos.
It's actually absurd IMO.
"You can use the software but you can't use my logo!". Da Vinci didn't drew it, so I don't even get the joke. It's like a small child telling his brother to use the TV and remote, but he can't touch the actual TV. Silly ^_^

mrbass
April 27th, 2005, 03:48 PM
I say replace it with the granddaddy of all firefox icons I've seen.
http://www.grafhp.ch/bilder/Illustration/Redaktions_Jobs/Feuerfuchs.htm

Sionide
April 27th, 2005, 04:19 PM
Heh, there's even *more* copyright with that one though!

You can probably use that icon in my example, heheh..

justaguynpc
April 27th, 2005, 04:50 PM
Did I see someone asking for the Thunderbird icon?


http://images.google.com/images?q=tbn:rc7FDep4K6YJ:www.winplanet.com/img/screenshots/icon-thunderbird.gif[/url]

Quest-Master
April 27th, 2005, 07:43 PM
It's strange, both logos are under weird licenses from the Mozilla Foundation which doesn't allow them to bundled into distributions, which I find mad but they must have their reasons.

What a completely stupid rule. I mean, most Linux distros are spreading the same flame Firefox helped ignite; open source.

Silly Foundation.

thechitowncubs
April 27th, 2005, 09:57 PM
Wow, what a mistake by the Mozilla Foundation.

ToastedToad
April 27th, 2005, 11:05 PM
Wow, what a mistake by the Mozilla Foundation.
Thanks for the tip. Apreciate it:)

crazybill
April 28th, 2005, 12:05 AM
Worked great. Thanks

gasparov
April 28th, 2005, 06:09 AM
Few more icons and sorry but I don't remember where i got them:

http://img253.echo.cx/img253/6043/firefoxexperiment2019yr.th.png (http://img253.echo.cx/my.php?image=firefoxexperiment2019yr.png)http://img253.echo.cx/img253/9132/firefoxexperiment2026wr.th.png (http://img253.echo.cx/my.php?image=firefoxexperiment2026wr.png)http://img253.echo.cx/img253/6640/firefoxexperiment3015wt.th.png (http://img253.echo.cx/my.php?image=firefoxexperiment3015wt.png)http://img253.echo.cx/img253/4863/firefoxexperiment3026zk.th.png (http://img253.echo.cx/my.php?image=firefoxexperiment3026zk.png)http://img253.echo.cx/img253/6941/thunderbird1014we.th.png (http://img253.echo.cx/my.php?image=thunderbird1014we.png)http://img254.echo.cx/img254/8038/thunderbird1026vd.th.png (http://img254.echo.cx/my.php?image=thunderbird1026vd.png)

bored2k
April 28th, 2005, 08:18 AM
Few more icons and sorry but I don't remember where i got them:

http://img253.echo.cx/img253/6043/firefoxexperiment2019yr.th.png (http://img253.echo.cx/my.php?image=firefoxexperiment2019yr.png)http://img253.echo.cx/img253/9132/firefoxexperiment2026wr.th.png (http://img253.echo.cx/my.php?image=firefoxexperiment2026wr.png)http://img253.echo.cx/img253/6640/firefoxexperiment3015wt.th.png (http://img253.echo.cx/my.php?image=firefoxexperiment3015wt.png)http://img253.echo.cx/img253/4863/firefoxexperiment3026zk.th.png (http://img253.echo.cx/my.php?image=firefoxexperiment3026zk.png)http://img253.echo.cx/img253/6941/thunderbird1014we.th.png (http://img253.echo.cx/my.php?image=thunderbird1014we.png)http://img254.echo.cx/img254/8038/thunderbird1026vd.th.png (http://img254.echo.cx/my.php?image=thunderbird1026vd.png)
Those were from gnome-look.org probably.

Sniffer
April 28th, 2005, 10:00 AM
Those were from gnome-look.org probably.


That icons are from Weboso (DevianArt). Great Icon maker, to me one of the best i have seen.

Sionide
April 28th, 2005, 10:07 AM
Yeah I like the middle two.

ignavia
April 28th, 2005, 06:59 PM
Okay dude, your images are gone.

bored2k
April 28th, 2005, 07:02 PM
Oops .. didn't know he was using my images. I'll edit his post ASAP.

edit- Fixed thread.

Gandalf
April 29th, 2005, 02:37 AM
Nice HOWTO man, Greetz...

Josh M
April 29th, 2005, 11:44 PM
Worked fine for me, thanks.

braveerudite
April 30th, 2005, 01:40 AM
Please someone explain why they don't use the original Firefox logos. I'm dying to know why. I always wonder

braveerudite
April 30th, 2005, 02:00 AM
Ok I couldn't wait for you guys to give me an answer so I went into Google and found one.


So lets say debian has a few debian specific firefox bugs they'd like to patch before they compile and distribute as debian packages. The Foundation is refusing the right to let debian use the official artwork because those patches haven't been fully tested by Mozilla staff. Regardless of what you believe should be done, it's how things are. (And as funny as it is, this actually happened -- debian's firefox package manager is pissed.)

They are just trying prevent the firefox logo from being tarnished by super-ultra-mega-optimized (experimental) versions of its software horribly compiled that break all the time, by establishing a meaningful brand.

bored2k
April 30th, 2005, 02:07 AM
Ok I couldn't wait for you guys to give me an answer so I went into Google and found one.


So lets say debian has a few debian specific firefox bugs they'd like to patch before they compile and distribute as debian packages. The Foundation is refusing the right to let debian use the official artwork because those patches haven't been fully tested by Mozilla staff. Regardless of what you believe should be done, it's how things are. (And as funny as it is, this actually happened -- debian's firefox package manager is pissed.)

They are just trying prevent the firefox logo from being tarnished by super-ultra-mega-optimized (experimental) versions of its software horribly compiled that break all the time, by establishing a meaningful brand.
We already discussed this on page2 .

randomidiot
April 30th, 2005, 04:56 AM
For KDE users there is an extra step:
change the ugly, hardbodered version of your icontheme


sudo cp mozilla-firefox.png /usr/share/icons/crystalsvg/16x16/apps/firefox.png
sudo cp mozilla-firefox.png /usr/share/icons/crystalsvg/24x24/apps/firefox.png
sudo cp mozilla-firefox.png /usr/share/icons/crystalsvg/22x22/apps/firefox.png
sudo cp mozilla-firefox.png /usr/share/icons/crystalsvg/32x32/apps/firefox.png
sudo cp mozilla-firefox.png /usr/share/icons/crystalsvg/48x48/apps/firefox.png
sudo cp mozilla-firefox.png /usr/share/icons/crystalsvg/64x64/apps/firefox.png
sudo cp mozilla-firefox.png /usr/share/icons/crystalsvg/128x128/apps/firefox.png


please note that "crystalsvg" may has to be changed to the icontheme-name you are currently using!

nickless
April 30th, 2005, 07:24 AM
har thx :D

momo66
April 30th, 2005, 08:33 AM
Worked like a charm for me. Thanks!!!

artnay
April 30th, 2005, 09:22 AM
For those who haven't found a nice FF icon yet: WinCustomize (http://www.wincustomize.com/Skins.aspx?LibID=29&view=1&sortby=4&sortdir=DESC&p=1&advanced=0&searchtxt=firefox).

From there you can find the original logo and icon for the files that FF handles. My personal favourite is on the page 5, Unofficial Mozilla Firefox Abstract.

mellowyllw6
April 30th, 2005, 04:55 PM
Thanks! Worked the first time I tried it, and the icon looks great.

abowman
May 5th, 2005, 09:06 PM
Here's a link to logos right from firefox:
http://www.spreadfirefox.com/?q=node/view/3064

dejitarob
May 30th, 2005, 12:23 PM
Perhaps this is for another HOWTO...

I just tried it and the coverted .xpm didn't appear to have the same transparent areas as the renamed .png

I did it that way and haven't had any problems.

Thanks for your other point, I've made those changes..
convert firefox.png firefox.xpm worked for me. Looks slightly better on the kde panel too.

allforcarrie
June 17th, 2005, 09:49 AM
Can someone tell me why none of these command ever work for me????

vladuz976
July 6th, 2005, 05:31 PM
The second is the "document" icon, indicating for example, that a file has a .htm extension which opens it in Firefox. (right-click -> save image as)


where is this icon i need to download? the only thing on here is the first icon.

Sam
July 6th, 2005, 06:15 PM
The second is the "document" icon, indicating for example, that a file has a .htm extension which opens it in Firefox. (right-click -> save image as)


where is this icon i need to download? the only thing on here is the first icon.
You can find it in this archive (http://ubuntuforums.org/attachment.php?attachmentid=1113). If you prefer a script for doing the job, have a look here (http://ubuntuforums.org/showthread.php?t=34354).

urbandryad
September 27th, 2005, 01:22 PM
if you have firefox on the panel, you just have to right click firefox, click preferences(orwhatever it says) and click on the icon button, then you can search and replace the icon. ^^ I guess its not the same if you have firefox as a desktop item though.

MerZo
March 9th, 2006, 09:14 AM
I wonder they the colors in the Xfce menu have different colors. Anybody got an answer?

Using firefox 1.5.0.1 by following a howto.
And this one.

I think the colors should be the same? One is lighter and one is darker.

The question is that if i missed something, for example i cant find the document picture, maybe it is that.

urbandryad
May 18th, 2006, 10:00 AM
I tried this with Xubuntu Breezy and it worked just fine. :) Just wanted to let those running Xubuntu who so they can replace their own icons. ;)

russellnation
July 1st, 2007, 08:48 PM
agghh i did that but on the top of the screen in my shortcut its still the stupid globe icon..... wait let me check in application menu.....aghh same there.....
any ideas
ill keep on trying
and yes i did log out/in again
oh yeah on feisty


ok upon further review its only with one icon theme package so maybe i can get in there and delete the crappy globe one and go back to original icon or the really cool replacement one....

ok re downloaded the Neu icons from gnome-look.org and then replaced each firefox icon with a coresponding sized (22x22, 24x24...) firefox logo (.png) i chose the fresher fiercer looking replacement firefox icon from gnome-look.org instead but eh to each his/her own.... and then re archived it and followed install instructions provided with the icon set and wham bam thankyou maam i have no longer got to stare at a boring globe icon which was in the package.

ahh thank you linux