#!/bin/bash case "$1" in remove|purge|0) if type update-alternatives >/dev/null 2>&1; then update-alternatives --remove 'mihomo-party' '/opt/mihomo-party/mihomo-party' 2>/dev/null || true fi [ -L '/usr/bin/mihomo-party' ] && rm -f '/usr/bin/mihomo-party' if hash update-mime-database 2>/dev/null; then update-mime-database /usr/share/mime || true fi if hash update-desktop-database 2>/dev/null; then update-desktop-database /usr/share/applications || true fi ;; *) # others ;; esac