Am Donnerstag, 15. September 2005 00:44 schrieb ajtiM:
Hi!
I installed gtk2_prefs on 10.0 RC1 and changed fonts. It works for example in the Gimp, GQview, Skype...but doesn;t works in Firefox 1.06 (same in beta 1.5) and Mozilla. How can i chage a size of font for menus in those to programs, please?
Hi ajtiM, this changes the font. With the same method you should be able to change the font size too. meister@atlan:~> cat ~/.fonts.conf <?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> <alias> <family>sans-serif</family> <prefer> <family>Adobe Helvetica</family> </prefer> </alias> <alias> <family>sans</family> <prefer> <family>Adobe Helvetica</family> </prefer> </alias> <alias> <family>serif</family> <prefer> <family>Adobe Times</family> </prefer> </alias> <alias> <family>monospace</family> <prefer> <family>Adobe Courier</family> </prefer> </alias> <match target="font" > <edit mode="assign" name="antialias" > <bool>false</bool> </edit> </match> <dir>~/.fonts</dir> <match target="font" > <edit mode="assign" name="hinting" > <bool>true</bool> </edit> </match> <match target="font" > <edit mode="assign" name="hintstyle" > <const>hintmedium</const> </edit> </match> </fontconfig> -- mdc