mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
0ce5566779
The cursor font is not in a separate package. Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
9 lines
225 B
Bash
9 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
|