I put in ~/.config/fontconfig/fonts.conf settings to turn on but it didn't appear to work. Then I used kde settings to fonts to turn on anti-aliasing, selecting RGB and hinting slight, and this appears to have changed to appearance.
So is kde ignoring the fonts.conf setting? kde settings does not include options such as lcdfilter either.
----[ /home/nbecker/.config/fontconfig/fonts.conf ] | <?xml version='1.0'?> | <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | <fontconfig> | <match target="pattern"> | <edit name="dpi" mode="assign">96</edit> | </match> | <match target="font"> | <edit mode="assign" name="antialias"> | <bool>true</bool> | </edit> | </match> | <match target="font"> | <edit mode="assign" name="hinting"> | <bool>true</bool> | </edit> | </match> | <match target="font"> | <edit mode="assign" name="hintstyle"> | <const>hintslight</const> | </edit> | </match> | <match target="font"> | <edit mode="assign" name="rgba"> | <const>rgb</const> | </edit> | </match> | <match target="font"> | <edit mode="assign" name="lcdfilter"> | <const>lcddefault</const> | </edit> | </match> | <dir>~/.fonts</dir> | </fontconfig> `----