11 lines
157 B
Text
11 lines
157 B
Text
|
#
|
||
|
# This script builds fontconfig's fonts cache.
|
||
|
#
|
||
|
case "${ACTION}" in
|
||
|
post)
|
||
|
echo "Building fonts cache... "
|
||
|
fc-cache -f >/dev/null
|
||
|
echo "done."
|
||
|
;;
|
||
|
esac
|