You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
299 B
Bash
14 lines
299 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "x$1" = xremove ]; then
|
|
update-alternatives \
|
|
--remove default.plymouth /usr/share/plymouth/themes/cutefish-logo/cutefish-logo.plymouth
|
|
|
|
update-alternatives \
|
|
--remove text.plymouth /usr/share/plymouth/themes/cutefish-text/cutefish-text.plymouth
|
|
fi
|
|
|
|
#DEBHELPER#
|