mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
13701fa3a6
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
17 lines
431 B
Bash
17 lines
431 B
Bash
#!/bin/sh
|
|
|
|
# Update fonts.{dir,scale,alias}
|
|
if [ -x /usr/bin/mkfontdir -a -x /usr/bin/mkfontscale ]; then
|
|
( cd usr/share/fonts/misc
|
|
/usr/bin/mkfontscale .
|
|
/usr/bin/mkfontdir .
|
|
if ! grep -q '^univga\>' fonts.alias; then
|
|
echo 'univga -bolkhov-vga-medium-r-normal--16-160-75-75-c-80-iso10646-1' >> fonts.alias
|
|
fi
|
|
)
|
|
fi
|
|
|
|
# Update the X font indexes:
|
|
if [ -x /usr/bin/fc-cache ]; then
|
|
/usr/bin/fc-cache -f
|
|
fi
|