There is a list "Use anti-aliasing" in System Settings -> Application Appearance -> Fonts which gives you 3 options: Enabled, Disabled, System Settings. If you choose "System Settings", you expect that system wide settings will be used (see section "Anti-aliasing text" in official documentation http://docs.kde.org/stable/en/kde-workspace/kcontrol/fonts/index.html). As far as I know, the right way to control these settings is maintaining "10-antialias.conf" symlink in /etc/fonts/conf.d directory. However, there is a problem: the global on/off settings for antialiasing actually doesn't work. Instead the previous enabled/disabled setting is used. Reproducible: Always Steps to Reproduce: Let's consider the case when the system wide settings enable anti-aliasing (i.e. there is a 10-antialias.conf symbolic link in /etc/fonts/conf.d). 1. Go to System Settings -> Application Appearance -> Fonts. 2. Choose "Disabled", click "Apply". Then choose "System Settings" and apply again. Actual Results: Anti-aliasing will be disabled, despite the system wide settings. Expected Results: I expect that the system wide settings will be used, i.e. anti-aliasing will be enabled. Here I will give my guess about the reasons of this behavior. When choosing "Disabled" and clicking "Apply" the file .fonts.conf in home directory is created: andrey@andrey-ThinkPad-X220:~$ tail -6 .fonts.conf <match target="font"> <edit mode="assign" name="antialias"> <bool>false</bool> </edit> </match> </fontconfig> When choosing "System Settings" this file is still present, and it overrides system settings. I think that solution is removing the section corresponding to anti-aliasing from local .fonts.conf when choosing "System Settings". We can do this manually, or we can remove this file. In this case global settings will finally be used.
Thanks for reporting . *** This bug has been marked as a duplicate of bug 244857 ***