mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
0a7698b8ef
Due to problems with 2.13, 2.14, and 2.15. Contact maintainer for more information. Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
14 lines
256 B
Bash
14 lines
256 B
Bash
# Update the X font indexes:
|
|
if [ -x /usr/bin/mkfontdir ]; then
|
|
( cd /usr/share/fonts/TTF
|
|
mkfontscale .
|
|
mkfontdir .
|
|
cd /usr/share/fonts/OTF
|
|
mkfontscale .
|
|
mkfontdir .
|
|
)
|
|
fi
|
|
if [ -x /usr/bin/fc-cache ]; then
|
|
/usr/bin/fc-cache -f
|
|
fi
|
|
|