Ugly Font Issue

Archived topics about LMDE 1 and LMDE 2
Locked
mfdemicco

Ugly Font Issue

Post by mfdemicco »

Is there any solution to the poor font rendering? I want my fonts to look like Mint based Ubuntu's.

The solution appears to be a patched version of libcairo2. No amount of tweaking worked satisfactorily for me.
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
mfdemicco

Re: Ugly Font Issue

Post by mfdemicco »

I fixed it! I copied the .fonts.conf file (which is an XML file) from my aptosid (was sidux) home folder to my LMDE home folder. I don't know if the fonts render exactly like Ubuntu's, but it looks 1000% better. Contents of the file are as follows:

Code: Select all

<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
 <match target="font">
  <edit mode="assign" name="rgba">
   <const>rgb</const>
  </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>
 <dir>~/.fonts</dir>
 <match target="font">
  <edit mode="assign" name="antialias">
   <bool>true</bool>
  </edit>
 </match>
</fontconfig>
randomizer

Re: Ugly Font Issue

Post by randomizer »

I've noticed that lcdfilter option in many places but I've never seen it actually have any impact whatsoever on any fonts anywhere in the system. Perhaps it is deprecated?
burtb08

Re: Ugly Font Issue

Post by burtb08 »

Code: Select all

 sudo dpkg-reconfigure fontconfig-config
This worked for me.
mfdemicco

Re: Ugly Font Issue

Post by mfdemicco »

burtb08 wrote:

Code: Select all

 sudo dpkg-reconfigure fontconfig-config
This worked for me.
I tried that several times but it didn't work for me.
burtb08

Re: Ugly Font Issue

Post by burtb08 »

mfdemicco wrote:
burtb08 wrote:

Code: Select all

 sudo dpkg-reconfigure fontconfig-config
This worked for me.
I tried that several times but it didn't work for me.
I went with Autohinter, Always, and No.
Locked

Return to “LMDE Archive”