#!/bin/sh # miwm.postrm set -e PACKAGE="miwm" SECTION=x-window-manager BIN=/usr/bin/jwm Alternatives () { update-alternatives --remove $SECTION $BIN } Debhelper () { : # Automatically generated # Automatically added by dh_installmenu/13.14.1 if [ -x "`command -v update-menus`" ] && [ -x "$DPKG_ROOT`command -v update-menus`" ]; then update-menus ; fi # End automatically added section } Main () { if [ "$1" = "remove" ] || [ "$1" = "purge" ] ; then Alternatives fi } Main "$@" # End of file