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