milis/talimatname/genel/plymouth/plymouth.kurkos

42 lines
1.2 KiB
Plaintext

if [ -x usr/bin/gconftool-2 ]; then
for schema in $(ls /etc/gconf/schemas/*.schemas); do
#semalarin kurumu
echo "GCONF_CONFIG_SOURCE=\"xml::etc/gconf/gconf.xml.defaults\" \
usr/bin/gconftool-2 --makefile-install-rule etc/gconf/schemas/${schema} >/dev/null 2>&1
done;
fi
if [ -x usr/bin/rarian-sk-update ]; then
usr/bin/rarian-sk-update 1> /dev/null 2> /dev/null
fi
# update mime database
if [ -x usr/bin/update-mime-database ]; then
usr/bin/update-mime-database usr/share/mime 1> /dev/null 2> /dev/null
fi
# update desktop entries
if [ -x usr/bin/update-desktop-database ]; then
usr/bin/update-desktop-database 1> /dev/null 2> /dev/null
fi
# update hicolor icons
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
rm -f usr/share/icons/hicolor/icon-theme.cache
fi
usr/bin/gtk-update-icon-cache -f -q usr/share/icons/hicolor 1>/dev/null 2>/dev/null
if [ -x /usr/bin/glib-compile-schemas ]; then
/usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas/ >/dev/null 2>&1
fi
# Restart gconfd-2 if running to reload new gconf settings
if ps acx | grep -q gconfd-2 ; then
killall -HUP gconfd-2 ;
fi
# A good idea whenever kernel modules are added or changed:
if [ -x sbin/depmod ]; then
/sbin/depmod -a 1> /dev/null 2> /dev/null
fi