14 lines
328 B
Plaintext
14 lines
328 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
case "$1" in
|
||
|
remove)
|
||
|
# Restore original Calamares icon
|
||
|
dpkg-divert --quiet --rename --package calamares-settings-debian \
|
||
|
--remove /usr/share/applications/calamares.desktop \
|
||
|
--remove /usr/share/applications/install-peppermint.desktop
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
|