mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-07 20:27:02 +01:00
ce4d126849
Signed-off-by: B. Watson <yalhcru@gmail.com>
10 lines
238 B
Bash
10 lines
238 B
Bash
# Update the X font indexes:
|
|
if [ -x /usr/bin/mkfontdir -a -x /usr/bin/mkfontscale ]; then
|
|
( cd usr/share/fonts/TTF
|
|
/usr/bin/mkfontscale .
|
|
/usr/bin/mkfontdir .
|
|
)
|
|
fi
|
|
if [ -x /usr/bin/fc-cache ]; then
|
|
/usr/bin/fc-cache -f
|
|
fi
|