xfce 中的 firefox 别名/锯齿字体

has*_*sen 4 firefox fonts kde anti-aliasing xfce

我已经使用 linux mint 7 几个星期了,我对它很满意,但我想尝试其他桌面,例如 KDE/Xfce

我不确定这是否是 Xfce 的 KDE 的错,但是 firefox 的字体渲染现在很糟糕,它渲染锯齿状/锯齿状字体。

我现在正在使用 xfce,

我的Xfce settings Manager > appearance > fonts设置大致如下:

默认字体:

     无 | 9  

渲染:

 [x] 启用抗锯齿  

           提示:无  
   子像素顺序:无  

但就好像 Firefox 忽略了这些设置!

Joh*_*n T 7

尝试.fonts.conf在您的主目录 ( ~/.fonts.conf)下编辑您的文件。

这对我很有效:

 <?xml version='1.0'?>
 <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
 <fontconfig>
  <match target="font" >
   <edit mode="assign" name="hinting">
    <bool>false</bool>
   </edit>
  </match>
 </fontconfig>
Run Code Online (Sandbox Code Playgroud)