Most of these programs are easy to activate font smoothing on. For all the borwsers (everything on that list except for Thunderbird), simply type about:config (notice there's no space in there!) into the location bar. That'll bring up an interface that's used to edit various preferences that there's no other way to mess with. There's a lot of stuff in there, but we're only concerned with 3 things, really:
font.FreeType2.autohinted
font.FreeType2.enabled
font.FreeType2.unhinted
You can double-click on these options to change the values. To make a long story short, you want to set autohinted to true, enabled to true, and unhinted to false. Then, all you'll need to do is restart your browser, and your fonts will be silky smooth. You can experiment with the settings in about:config all you want to - some settings might be more pleasing to your eye than others.
For Thunderbird, things get a little tricky. There is no location bar to type about:config into, so there's no easy way to get into the configuration. So, we have to create a file called user.js.
So, in a terminal, simply type in
Code: Select all
nano -w ~/.thunderbird/default/(random characters)/user.jsCode: Select all
user_pref("font.FreeType2.autohinted", true);
user_pref("font.FreeType2.enable", true);
user_pref("font.FreeType2.unhinted", false);
user_pref("font.FreeType2.enable", true);
user_pref("font.freetype2.shared-library", "libfreetype.so.6");
user_pref("font.antialias.min", 0);
user_pref("font.embedded_bitmaps.max", 1000000);
user_pref("font.scale.tt_bitmap.dark_text.min", 0);
user_pref("font.scale.tt_bitmap.dark_text.gain", "0.0");
user_pref("font.directory.truetype.1", "/usr/share/fonts/ttf-bitstream-vera");
user_pref("font.directory.truetype.2", "/usr/share/fonts/TTF");
user_pref("font.directory.truetype.3", "/usr/share/fonts/corefonts");
user_pref("font.directory.truetype.4", "/usr/share/fonts/freetype");
user_pref("font.FreeType2.printing", true);
Save the file and (re)start Thunderbird. You should notice a very noticable difference in your fonts.
In addition to all of this, you can get things to look even better if you set your browser to use the ttf-bitstream-vera font family. Each browser (and Thunderbird too) should have its own font settings page, and they're all very similar. Just make sure you use Bitstream Vera Serif for Serif, Bitstream Vera Sans for Sans, and Bitstream Vera Sans Mono for Monospace. Set your minimum font size to 9 and make sure "always use my fonts/colors" are unchecked.
Bam, nice smooth fonts for your browsing and emailing convenience.





