summaryrefslogtreecommitdiffstats
path: root/rc/rc.fix
blob: 02ce94c0cc89fc0f51bc158ec50394711c312dca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/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 &> /dev/null
fi


# End of file