#!/bin/bash -e

#DEBHELPER#

if [ "$1" = "configure" -o "$1" = "abort-upgrade" ]; then
    # Alternatives for the background
    update-alternatives --install \
        /usr/share/images/desktop-base/desktop-background \
        desktop-background \
        /usr/share/pixmaps/backgrounds/gnome/hp/default_background_solid.png 100

    update-alternatives --install \
        /usr/share/images/desktop-base/desktop-background \
        desktop-background \
        /usr/share/pixmaps/backgrounds/gnome/hp/default_background_translucent.png 10
fi
