#!/bin/sh for i in \ desktop_gnome_accessibility_keyboard.schemas \ desktop_gnome_accessibility_startup.schemas \ desktop_gnome_applications_at_mobility.schemas \ desktop_gnome_applications_at_visual.schemas \ desktop_gnome_applications_browser.schemas \ desktop_gnome_applications_office.schemas \ desktop_gnome_applications_terminal.schemas \ desktop_gnome_applications_window_manager.schemas \ desktop_gnome_background.schemas \ desktop_gnome_file_views.schemas \ desktop_gnome_interface.schemas \ desktop_gnome_lockdown.schemas \ desktop_gnome_peripherals_keyboard.schemas \ desktop_gnome_peripherals_mouse.schemas \ desktop_gnome_sound.schemas \ desktop_gnome_thumbnail_cache.schemas \ desktop_gnome_thumbnailers.schemas \ desktop_gnome_typing_break.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