mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
275 B

  1. #!/bin/sh
  2. echo "Running mkfontscale / mkfontdir ..."
  3. for dir in /usr/X11R6/lib/X11/fonts/* ; do
  4. [ -d $dir ] || continue
  5. echo -n "$dir "
  6. mkfontscale $dir
  7. mkfontdir $dir
  8. done ; unset dir
  9. echo
  10. if [ "`which fc-cache`" ] ; then
  11. echo "Running fc-cache ..."
  12. fc-cache -v
  13. fi