doinst.sh 241 B

1234567891011121314
  1. #!/bin/sh
  2. # Update mkfontscale and mkfontdir:
  3. if [ -x /usr/bin/mkfontdir ]; then
  4. ( cd /usr/share/fonts/misc
  5. mkfontscale .
  6. mkfontdir .
  7. )
  8. fi
  9. # Update the X font indexes:
  10. if [ -x /usr/bin/fc-cache ]; then
  11. /usr/bin/fc-cache -f
  12. fi