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

#!/bin/sh
echo "Running mkfontscale / mkfontdir ..."
for dir in /usr/X11R6/lib/X11/fonts/* ; do
[ -d $dir ] || continue
echo -n "$dir "
mkfontscale $dir
mkfontdir $dir
done ; unset dir
echo
if [ "`which fc-cache`" ] ; then
echo "Running fc-cache ..."
fc-cache -v
fi