Jump to content

Disable font antialiasing in MDK9.1


gregor
 Share

Recommended Posts

You can see the difference here:

http://linux.newexistence.org/fonts.html

 

Add to: /etc/fonts/fonts.conf

 

<match target="pattern">

<test qual="any" name="size" compare="more">

<double>7</double>

</test>

<test qual="any" name="size" compare="less">

<double>15</double>

</test>

<edit name="antialias" mode="assign">

<bool>false</bool>

</edit>

</match>

 

<match target="pattern">

<test qual="any" name="pixelsize" compare="more">

<double>7</double>

</test>

<test qual="any" name="pixelsize" compare="less">

<double>17</double>

</test>

<edit name="antialias" mode="assign">

<bool>false</bool>

</edit>

</match>

 

<match target="pattern">

<test qual="any" name="weight" compare="more">

<int>100</int>

</test>

<edit name="antialias" mode="assign">

<bool>true</bool>

</edit>

</match>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...