Files
desktop-base/debian/postrm
2026-03-11 06:35:35 -07:00

17 lines
369 B
Bash

#!/bin/sh
set -e
# Tag to allow some debhelper commands to inject relevant code
#DEBHELPER#
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
update-alternatives --remove \
default.plymouth \
/usr/share/plymouth/themes/vesperos/vesperos.plymouth || true
if which update-grub2 > /dev/null ; then
update-grub2 || true
fi
fi