Hello. On 05/10/12 at 10:48am, pancake wrote: > I'm suggesting this change because truetyped fonts with antialias are hard > to read, probably more than transparent terminals. > > -#define FONT "Liberation Mono:pixelsize=12:antialias=true:autohint=false" > +#define FONT "Liberation Mono:pixelsize=12:antialias=false:autohint=false" >
I've played with various font settings in config.h and there were no difference in how fonts look, neither I set antialiasing true nor false. Then I decided to change system/user fontconfig antialiasing settings and those changes made st display fonts differently. So, I propose the following patch where st uses system/user fontconfig settings. Or am I missing something?
diff -r c36c787389f4 config.def.h --- a/config.def.h Sat Oct 06 13:45:14 2012 +0200 +++ b/config.def.h Sat Oct 06 20:53:23 2012 +0700 @@ -1,5 +1,5 @@ -#define FONT "Liberation Mono:pixelsize=12:antialias=false:autohint=false" +#define FONT "Liberation Mono:pixelsize=12" /* Space in pixels around the terminal buffer */ #define BORDER 2
