#!/bin/sh
set -e

#DEBHELPER#

if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
    # Removing the master also removes all slaves automatically
    update-alternatives --remove \
        desktop-theme \
        /usr/share/desktop-base/vesperos-theme || true
fi
