mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
544 B

  1. # merge default panel entries into the default panel gconf
  2. # xml-storage-cache-whatever-whocares once installed
  3. if any_installed "gconf/schemas/panel-default-setup.entries" ; then
  4. GCONFDIR="`find /etc -type d -name gconf 2>/dev/null | head -n 1`"
  5. if [ -e "${GCONFDIR}/schemas/panel-default-setup.entries" ]; then
  6. echo "Gnome2: merging gnome-panel default entries..."
  7. gconftool-2 --direct \
  8. --config-source `gconftool-2 --get-default-source` \
  9. --load=${GCONFDIR}/schemas/panel-default-setup.entries
  10. fi
  11. fi