How can I change font rendering to sub-pixel BGR ordering?
In Ubuntu 11.10, I can't find a way to change the sub-pixel byte ordering to BGR. I have a BGR monitor and fonts look blurry because of this. I've installed gnome-tweak-tool
but I can't find an option for the sub-pixel ordering. This used to be easy to do with the old font settings window.
You can do this using a GUI (dconf-editor
from the package dconf-tools
) or on the command-line:
GUI
- Open
dconf-editor
- In the left pane, go to /org/gnome/settings-daemon/plugins/xsettings
- In the right pane, change the value of the rgba-order key to bgr:
Command-line
Just run:
gsettings set org.gnome.settings-daemon.plugins.xsettings rgba-order 'bgr'
You also may want to change system-wide font settings (and re-login afterwards):
ln -s ../conf.avail/10-sub-pixel-bgr.conf /etc/fonts/conf.d
This fixes sub-pixel rendering on Google Chrome for me, too.