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.confI don't know however if this file will exist on all (or most) Linux systems.
14 Answers
Every font that is located under any subdirectory of /usr/share/fonts and ~/.fonts is scanned and added to the collection you're able to use. So as long as your font is inside one of those two directories it is correclty located, that location is the same for almost every major linux distro.
Update:
By the way I can confirm that fonts.conf file is present on both Fedora and Ubuntu (and their derivates: Xubuntu, Lubuntu, Linux Mint, Cinnammon, Peppermint OS, Fedora and all its spins, to mention some).
In Fedora the folder path is/home/{user}/.local/share/fonts
you can copy/paste font files here.
0All distributions are differents, you're better to set a default path and let the user select between the default and a custom one.
Edit:
In my opinion, you have three solutions because there is no environment variable or function for that.
- Set a default path and let the user select between the default and a custom one.
- Like dtrosset said, you could create packages with your fonts for the different distributions.
- You could use if/elif/else and test -e to determine if the different font server paths exist. If no one exist, show the default path and let the user select between it and a custom one.
Ex:
DEFAULT="$home/.fonts/"
UBUNTU_XFSTT="/usr/share/fonts/truetype/"
RHL52_XFS="/usr/X11R6/lib/X11/fonts/ttfonts/"
RHL6_XFSTT="/usr/X11R6/lib/X11/fonts/"
DEBIAN_XFSTT="/usr/share/fonts/truetype/"
#Test if directory exist
if test -e ${UBUNTU_XFSTT} ; then echo ${UBUNTU_XFSTT}
elif test -e ${RHL52_XFS} ; then echo ${RHL52_XFS}
elif test -e ${RHL6_XFSTT} ; then echo ${RHL6_XFSTT}
elif test -e ${DEBIAN_XFSTT} ; then echo ${DEBIAN_XFSTT}
else echo ${DEFAULT}
fiP.S. That's only MY opinion...
2Maybe you could consider creating a package with your fonts. It is a bit of work creating the package description files, and creation rules. But you gain ability to update and uninstall for free. For Ubuntu, you should create .deb files.