nixpkgs/pkgs/tools/graphics/gnuplot/set-gdfontpath-from-fontconfig.sh

5 lines
182 B
Bash
Raw Normal View History

p=( $(for n in $(fc-list | sed -r -e 's|^([^:]+):.*$|\1|'); do echo $(dirname "$n"); done | sort | uniq) )
IFS=:
export GDFONTPATH="${GDFONTPATH}${GDFONTPATH:+:}${p[*]}"
unset IFS p