mirror of
https://github.com/Ponce/slackbuilds
synced 2024-12-05 00:55:44 +01:00
10 lines
225 B
Bash
10 lines
225 B
Bash
|
#!/bin/sh
|
||
|
# Update the X font indexes:
|
||
|
if [ -x /usr/bin/mkfontdir ]; then
|
||
|
/usr/bin/mkfontscale /usr/share/fonts/misc
|
||
|
/usr/bin/mkfontdir /usr/share/fonts/misc
|
||
|
fi
|
||
|
if [ -x /usr/bin/fc-cache ]; then
|
||
|
/usr/bin/fc-cache -f
|
||
|
fi
|