blob: 11dff54efeaa2f1ee10bc093037a8d042b41bc45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
# Update fonts.{dir,scale,alias}
if [ -x /usr/bin/mkfontdir -a -x /usr/bin/mkfontscale ]; then
( cd usr/share/fonts/misc
/usr/bin/mkfontscale .
/usr/bin/mkfontdir .
if ! grep -q '^univga\>' fonts.alias; then
echo 'univga -bolkhov-vga-medium-r-normal--16-160-75-75-c-80-iso10646-1' >> fonts.alias
fi
)
fi
# If X is running...
if [ "$DISPLAY" != "" ] && [ -x /usr/bin/xset ]; then
/usr/bin/xset fp rehash >/dev/null 2>&1
fi
# Update the X font indexes:
if [ -x /usr/bin/fc-cache ]; then
/usr/bin/fc-cache -f
fi
|