Removed scale patch from plymouth
This commit is contained in:
parent
4455a3f6c2
commit
28aa479cfd
3 changed files with 58 additions and 1 deletions
44
helpers/DATA/plymouth/plymouth-theme-trisquel-logo.postinst
Executable file
44
helpers/DATA/plymouth/plymouth-theme-trisquel-logo.postinst
Executable file
|
|
@ -0,0 +1,44 @@
|
|||
#!/bin/sh -e
|
||||
# This script can be called in the following ways:
|
||||
#
|
||||
# After the package was installed:
|
||||
# <postinst> configure <old-version>
|
||||
#
|
||||
#
|
||||
# If prerm fails during upgrade or fails on failed upgrade:
|
||||
# <old-postinst> abort-upgrade <new-version>
|
||||
#
|
||||
# If prerm fails during deconfiguration of a package:
|
||||
# <postinst> abort-deconfigure in-favour <new-package> <version>
|
||||
# removing <old-package> <version>
|
||||
#
|
||||
# If prerm fails during replacement due to conflict:
|
||||
# <postinst> abort-remove in-favour <new-package> <version>
|
||||
|
||||
|
||||
case "$1" in
|
||||
configure)
|
||||
update-alternatives \
|
||||
--install /lib/plymouth/themes/default.plymouth default.plymouth \
|
||||
/lib/plymouth/themes/trisquel-logo/trisquel-logo.plymouth 100 \
|
||||
--slave /lib/plymouth/themes/default.grub default.plymouth.grub \
|
||||
/lib/plymouth/themes/trisquel-logo/trisquel-logo.grub
|
||||
|
||||
if which update-initramfs >/dev/null 2>&1
|
||||
then
|
||||
update-initramfs -u
|
||||
fi
|
||||
;;
|
||||
|
||||
abort-upgrade|abort-deconfigure|abort-remove)
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "$0 called with unknown argument \`$1'" 1>&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
exit 0
|
||||
|
||||
8
helpers/DATA/plymouth/plymouth-theme-trisquel-logo.prerm
Executable file
8
helpers/DATA/plymouth/plymouth-theme-trisquel-logo.prerm
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
if [ "x$1" = xremove ]; then
|
||||
update-alternatives \
|
||||
--remove default.plymouth /lib/plymouth/themes/trisquel-logo/trisquel-logo.plymouth
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue