The Xft feature looks for true type fonts in specific places. I found that not working
in my case so I followed the instructions to add a ~/.fonts.conf file and
that worked great (see this).
Arabic True Type
I basically copied all my .ttf fonts from my windows machine, that includes the basic arabic fonts.
Here is what I did:
- Put all the .ttf files in /usr/X11R6/lib/X11/fonts/truetype
- Edit /usr/X11R6/lib/X11/fs/config , add the above path to the catalogue.
That doesn't seem to work all the time, but here is the real fixer, create a file named
.fonts.conf in your home directory. Put the following inside it:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<dir>/usr/X11R6/lib/X11/fonts/truetype</dir>
</fontconfig>
That should do it.. You can add more directories also. Enjoy...
|