Aagh, I’m down with the flu yet again. This is ridiculous — it’s the fourth time this year, and the third in four months! I barely got sick during university and I’m certain I did way worse shit to my body back then.
Anyway, been messing around with Firefox lately, and stumbled across some good stuff (despite hosing my profile every so often):
Safarifox Themes: Make your Firefox (on Windows, at least — I couldn’t get it to work on my Mac) look like Safari (try the non-TBE version called Brushed SunkenAquaGraphite for that effect, or the others for other Mac-like themes). The Safari theme even has the little bookmark button you can place on the bookmark bar and all.
GrApple Mac Themes for Firefox: Same, but localised for Mac only. Has the old Pinstripe theme (called GrApple Classic) and Safari-like tabs in the Pro version.
Firefox Extension Room: With a whole bunch of extensions. Bean had mentioned the Stop/Reload extension — combining the Stop and Reload browser buttons like in Safari — but it didn’t work very well with my current theme (see above). Luckily, the first link had some hints on how to edit your userChrome.css file to get it compatible; essentially, you’d need to add some hints to tell where in the toolbar pixmap to find the relevant icons. I extracted these numbers from the GrApple Classic Pro jar file (unzip the jar file, open browser.css and find correct-looking CSS classes):
/* Stop */
.stopreload-stop,
.stopreload-stop:hover {
-moz-image-region: rect(0px 96px 32px 64px) !important;
}
.stopreload-stop:hover:active {
-moz-image-region: rect(32px 96px 64px 64px) !important;
}
toolbar[iconsize=small] .stopreload-stop,
toolbar[iconsize=small] .stopreload-stop:hover {
-moz-image-region: rect(0px 78px 24px 52px) !important;
}
toolbar[iconsize=small] .stopreload-stop:hover:active {
-moz-image-region: rect(24px 78px 48px 52px) !important;
}
/*Reload*/
.stopreload-reload,
.stopreload-reload:hover {
-moz-image-region: rect(0px 128px 32px 96px) !important;
}
.stopreload-reload:hover:active {
-moz-image-region: rect(32px 128px 64px 96px) !important;
}
toolbar[iconsize=small] .stopreload-reload,
toolbar[iconsize=small] .stopreload-reload:hover {
-moz-image-region: rect(0px 104px 24px 78px) !important;
}
toolbar[iconsize=small] .stopreload-reload:hover:active {
-moz-image-region: rect(24px 104px 48px 78px) !important;
}
Mileage may vary with other themes, but it works great for me.
And finally: Firefox and Camino optimised builds for G4. Almost certain to hose your Firefox profile. There’s a page with G5 optimised builds somewhere, but if you have a G5 I refuse to talk to you out of sheer jealousy.
Time to pop some pills… again.