9 lines
206 B
Bash
9 lines
206 B
Bash
#!/bin/sh -e
|
|
|
|
if [ $(command -v mkfontdir) ]
|
|
then
|
|
mkfontdir /usr/share/fonts/X11/fixed/
|
|
else
|
|
printf "mkfontdir not found.\nRemember to create a fonts.dir before rehashing your X11 font file path.\n"
|
|
fi
|