I have made my system Antialiasing free. And use an antialiasing-free friendly font as system font. It's Arial. This works.
But now I use a programme, that has its own font. So it does not use Arial font from my system. It's a Flatpak programme and the font it uses is not "antialiasing free" -friendly. There is also no possibility to change the font inside of this programme. So this antialiasing friendly font of this programme looks terrible without antialiasing enabled.
So here is my question:
Is it possible to enable antialiasing just for one particular programme? (In this case even a Flatpak programme?)
---------
Here are my current settings:
Content of /etc/fonts/local.conf :
Code: Select all
<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<alias>
<family>sans-serif</family>
<prefer><family>Arial</family></prefer>
</alias>
<alias>
<family>monospace</family>
<prefer><family>DotumChe</family></prefer>
</alias>
<alias>
<family>serif</family>
<prefer><family>Times New Roman</family></prefer>
</alias>
<match target="font">
<edit mode="assign" name="antialias">
<bool>false</bool>
</edit>
</match>
</fontconfig>
Any idea?