11 lines
306 B
Bash
11 lines
306 B
Bash
#!/bin/sh
|
|
# Update the X font indexes:
|
|
if [ -x /bin/mkfontdir ]; then
|
|
mkfontscale share/fonts/TTF 2> /dev/null
|
|
mkfontdir share/fonts/TTF 2> /dev/null
|
|
mkfontscale share/fonts/OTF 2> /dev/null
|
|
mkfontdir share/fonts/OTF 2> /dev/null
|
|
fi
|
|
if [ -x /bin/fc-cache ]; then
|
|
/bin/fc-cache -f 2> /dev/null
|
|
fi
|