Is there a way to configure the font path in Linux easily using a PATH-like variable or a configuration file?

I keep most of my fonts in Dropbox, so I'd like to set the font path to be something like:

/usr/share/fonts:$HOME/.fonts:$HOME/Dropbox/Documents/Fonts

Any way to do this?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Just symlink a subfolder of .fonts to a folder in your Dropbox.

E.g., from the commandline:

ln -s $HOME/Dropbox/Documents/Fonts ~/.fonts/Dropbox-Fonts

link|improve this answer
Sweet! I didn't know it would climb down into subdirectories. – TK Kocheran Jan 2 '11 at 3:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.