14 lines
350 B
Bash
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
|