mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
9f10192559
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
12 lines
279 B
Bash
12 lines
279 B
Bash
if [ -x /usr/bin/mkfontdir -o -x /usr/X11R6/bin/mkfontdir ]; then
|
|
( cd /usr/share/fonts/misc
|
|
mkfontdir .
|
|
)
|
|
fi
|
|
if [ -x /usr/bin/xset ]; then
|
|
/usr/bin/xset +fp /usr/share/fonts/misc
|
|
/usr/bin/xset fp rehash
|
|
fi
|
|
if [ -x /usr/bin/fc-cache ]; then
|
|
/usr/bin/fc-cache -f
|
|
fi
|