23 lines
582 B
Bash
Executable File
23 lines
582 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# /etc/rc.fix: adjustements startup file (multi-user)
|
|
#
|
|
|
|
#######################################################################
|
|
# X11 font-related checks
|
|
#######################################################################
|
|
if [ -d /usr/share/fonts/X11 ]; then
|
|
for i in $(/bin/ls -d /usr/share/fonts/X11/*); do
|
|
if [ ! -f "$i/fonts.dir" ]; then
|
|
mkfontdir "$i" &> /dev/null
|
|
mkfontscale "$i" &> /dev/null
|
|
fi
|
|
done
|
|
fi
|
|
|
|
if [ -d /var/cache/fontconfig ] && [ -z "$(/bin/ls /var/cache/fontconfig/)" ]; then
|
|
fc-cache --system-only &> /dev/null
|
|
fi
|
|
|
|
# End of file
|