20 lines
308 B
Bash
20 lines
308 B
Bash
# douninst.sh
|
|
#
|
|
# uninstall script for Slackware >= 15.0
|
|
|
|
# Update the fonts indexes.
|
|
|
|
if [ -x /usr/bin/mkfontdir ]; then
|
|
cd /usr/share/fonts/TTF
|
|
mkfontdir .
|
|
fi
|
|
|
|
if [ -x /usr/bin/mkfontscale ]; then
|
|
cd /usr/share/fonts/TTF
|
|
mkfontscale .
|
|
fi
|
|
|
|
if [ -x /usr/bin/fc-cache ]; then
|
|
fc-cache -f -v
|
|
fi
|