Files
desktop-base/debian/postrm
2026-04-03 00:19:54 -07:00

14 lines
350 B
Bash

#!/bin/sh
set -e
#DEBHELPER#
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
# Reset Plymouth theme only if vesperos is still active
if command -v plymouth-set-default-theme > /dev/null 2>&1; then
if [ "$(plymouth-set-default-theme)" = "vesperos" ]; then
plymouth-set-default-theme -R text
fi
fi
fi