Skip to content

Instantly share code, notes, and snippets.

@binzram
Last active August 29, 2015 14:23
Show Gist options
  • Save binzram/6a2464898237070b4a24 to your computer and use it in GitHub Desktop.
Save binzram/6a2464898237070b4a24 to your computer and use it in GitHub Desktop.
Anti-aliasing in Fedora
  1. Add RPMFusion repositories:
sudo yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
  1. Install FreeType with subpixel rendering enabled:
sudo yum install -y freetype-freeworld
  1. Change text anti-aliasing and typeface hinting settings:
gsettings set org.gnome.settings-daemon.plugins.xsettings antialiasing rgba
gsettings set org.gnome.settings-daemon.plugins.xsettings hinting slight
  1. Activate the lcddefault lcdfilter
 echo "Xft.lcdfilter: lcddefault" > ~/.Xresources
  1. Restart applications or os.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment