#!/bin/sh
#
# So in 1.0, we shipped certain music/photo/web favorites by default via
# debian gconf-defaults.
#
# For 1.1, we can't change those defaults, because then prior users will
# have the favorites changed from under them if they never replaced them with
# their own favorites.
# 
# So, we keep the gconf-defaults as they are and set the new favorites via
# this install-time script.  This notably is not just changing the 'default',
# it's actually changing the value, so future default changes won't affect this
# user, for good or ill.

. /usr/share/debconf/confmodule

db_get passwd/username
USER="$RET"

sudo -u "$USER" gconftool-2 -s /apps/harbour-launcher/music-fav-1 -t list --list-type=string  "[The Hot And Heavy,The Hot And Heavy]"

sudo -u "$USER" gconftool-2 -s /apps/harbour-launcher/music-fav-1-cache -t string "/etc/skel/.elisa-0.5/pictures_cache/117345cd306d334729ac36eb9d78eb43.jpg"

sudo -u "$USER" gconftool-2 -s /apps/harbour-launcher/music-fav-2 -t list --list-type=string  "[Hard Times Are In Fashion,Koufax]"

sudo -u "$USER" gconftool-2 -s /apps/harbour-launcher/music-fav-2-cache -t string "/etc/skel/.elisa-0.5/pictures_cache/278038af880fad224e29c9abd3113ae2.jpg"

