Location of truetype fonts
Posted
by
StackedCrooked
on Super User
See other posts from Super User
or by StackedCrooked
Published on 2010-05-05T13:55:46Z
Indexed on
2013/10/21
3:58 UTC
Read the original article
Hit count: 461
I would like to create a small script that installs a few truetype fonts on the user's system. On my Ubuntu machine the truetype fonts are located at /usr/share/fonts/truetype
. However, I'm not sure if this location is the same on all machines. Is there a way to find out where truetypes fonts are stored on any Linux system?
Update
After some research I found that the path usr/share/fonts/truetype
is specified in the XML file /etc/fonts/fonts.conf
. It's an XML file, so I can use XPath to get the dir:
xpath -q -e 'fontconfig/dir[1]/text()[1]' /etc/fonts/fonts.conf
I don't know however if this file will exist on all (or most) Linux systems.
© Super User or respective owner