$ fc-list | sed 's,:.*,,' | sort -ulists everything except Type1 directory contents.Meanwhile fc-cache searches and caches /usr/share/fonts/Type1$ xlsfonts|grep nimbus shows the font.% xset q
/.../
Font Path:
/usr/share/fonts/100dpi,/usr/share/fonts/75dpi/,/usr/share/fonts/cyrillic/,/usr/share/fonts/local/,/usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/
I have this file
xorg-fonts-misc-1.0b-1
Xorg-font-bitstream-75dpi-1.0.0-2.i386
Xorg-font-bitstream-100dpi-1.2a-2.arm
Other-Third-Party-1.2.2-1-any
i want to separate and want output like this
xorg-fonts-misc- 1.0b-1
Xorg-font-bitstream-75dpi- 1.0.0-2.i386
Xorg-font-bitstream-100dpi- 1.2a-2.arm
Other-Third-Party- 1.2.2-1-any
I tried this
-[^a-zA-Z][0-9\.\w-]+
Could it be that xorg is not loading my /user/share/fonts/local dir?
pacman -S xorg-xfontsel gtk2fontselxfontsel shows you all the X11 fonts. gtk2fontsel shows you the xft fonts.
You can find a list of fonts and their respective languages here : https://wiki.archlinux.org/index.php/Fo … t_packages.For my part, I symply installed all of the ttf-* packages from extra and community (I could probably make some clean up and chosse what to keep, but a font isn't that big, and I have choice and absolutely no missing ones).You should also install the windows7 MS fonts from AU
Do bitmap fonts work in other programs? Make sure you don't have them disabled:https://wiki.archlinux.org/index.php/Fo … tmap_fonts
anonymous_user
https://bbs.archlinux.org/profile.php?id=28548
2013-01-29T01:27:20Z
Are you sure it is that setting that is doing that with your applications? Apparently there is a bug with xorg-common-server and xorg-server packages in combination with Nvidia GPU's that mess up fonts. I had that problem and had to downgrade from the 1.14* to 1.13* set and it solved it.
felixculpa
https://bbs.archlinux.org/profile.php?id=60966
2012-11-25T01:35:29Z
I think what you can try is to symlink one of those files into /etc/fonts/conf.d, and see if your fonts look better afterward.To set to try BGR,ln -s /etc/fonts/conf.avail/10-sub-pixel-bgr.conf /etc/fonts/conf.dAlso, it may be your desktop environment will let you set this instead of symlinking. I know KDE lets you select subpixel order, as well as xfce4. Probably gnome as well,
WOW! Thanks it's working now!How I solved:yum install xorg-x11-fonts-miscyum install xorg-x11-fonts-Type1 [by mattias9410]