535d2128e5
--HG-- extra : convert_revision : 25c37e03bcec3ec8d52cc67fb6f7df9ec2e075c3
9 lines
223 B
Bash
9 lines
223 B
Bash
#
|
|
# This helpers runs fc-cache after fontconfig has been installed,
|
|
# and update its list of fonts.
|
|
#
|
|
|
|
if [ -x /usr/bin/fc-cache ]; then
|
|
/usr/bin/fc-cache -f
|
|
[ "$?" -eq 0 ] && echo "=> Updated fontconfig fonts cache."
|
|
fi
|