blob: 92d7db79c6c346004b9be788ca7dcfc3714272d0 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
for i in gnome-system-monitor.schemas; do
echo "Uninstalling GConf2 schema $i."
GCONF_CONFIG_SOURCE=`/usr/bin/gconftool-2 --get-default-source` \
/usr/bin/gconftool-2 --makefile-uninstall-rule /etc/gconf/schemas/$i >/dev/null
done
|