parent
56a52d4be3
commit
4480092396
@ -0,0 +1 @@
|
|||||||
|
usr/share/plymouth/themes/lubuntu-next-logo/
|
@ -0,0 +1,33 @@
|
|||||||
|
#!/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 /usr/share/plymouth/themes/default.plymouth default.plymouth \
|
||||||
|
/usr/share/plymouth/themes/lubuntu-next-logo/lubuntu-next-logo.plymouth 150
|
||||||
|
|
||||||
|
if which update-initramfs >/dev/null 2>&1
|
||||||
|
then
|
||||||
|
update-initramfs -u
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
exit 0
|
@ -0,0 +1,43 @@
|
|||||||
|
#!/bin/sh -e
|
||||||
|
# This script can be called in the following ways:
|
||||||
|
#
|
||||||
|
# After the package was removed:
|
||||||
|
# <postrm> remove
|
||||||
|
#
|
||||||
|
# After the package was purged:
|
||||||
|
# <postrm> purge
|
||||||
|
#
|
||||||
|
# After the package was upgraded:
|
||||||
|
# <old-postrm> upgrade <new-version>
|
||||||
|
# if that fails:
|
||||||
|
# <new-postrm> failed-upgrade <old-version>
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# After all of the packages files have been replaced:
|
||||||
|
# <postrm> disappear <overwriting-package> <version>
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# If preinst fails during install:
|
||||||
|
# <new-postrm> abort-install
|
||||||
|
#
|
||||||
|
# If preinst fails during upgrade of removed package:
|
||||||
|
# <new-postrm> abort-install <old-version>
|
||||||
|
#
|
||||||
|
# If preinst fails during upgrade:
|
||||||
|
# <new-postrm> abort-upgrade <old-version>
|
||||||
|
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
remove)
|
||||||
|
update-alternatives \
|
||||||
|
--remove default.plymouth /usr/share/plymouth/themes/lubuntu-next-logo/lubuntu-next-logo.plymouth
|
||||||
|
|
||||||
|
if which update-initramfs >/dev/null 2>&1
|
||||||
|
then
|
||||||
|
update-initramfs -u
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
exit 0
|
@ -0,0 +1 @@
|
|||||||
|
usr/share/plymouth/themes/lubuntu-next-text/
|
@ -0,0 +1,33 @@
|
|||||||
|
#!/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 /usr/share/plymouth/themes/text.plymouth text.plymouth \
|
||||||
|
/usr/share/plymouth/themes/lubuntu-next-text/lubuntu-next-text.plymouth 150
|
||||||
|
|
||||||
|
if which update-initramfs >/dev/null 2>&1
|
||||||
|
then
|
||||||
|
update-initramfs -u
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
exit 0
|
@ -0,0 +1,43 @@
|
|||||||
|
#!/bin/sh -e
|
||||||
|
# This script can be called in the following ways:
|
||||||
|
#
|
||||||
|
# After the package was removed:
|
||||||
|
# <postrm> remove
|
||||||
|
#
|
||||||
|
# After the package was purged:
|
||||||
|
# <postrm> purge
|
||||||
|
#
|
||||||
|
# After the package was upgraded:
|
||||||
|
# <old-postrm> upgrade <new-version>
|
||||||
|
# if that fails:
|
||||||
|
# <new-postrm> failed-upgrade <old-version>
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# After all of the packages files have been replaced:
|
||||||
|
# <postrm> disappear <overwriting-package> <version>
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# If preinst fails during install:
|
||||||
|
# <new-postrm> abort-install
|
||||||
|
#
|
||||||
|
# If preinst fails during upgrade of removed package:
|
||||||
|
# <new-postrm> abort-install <old-version>
|
||||||
|
#
|
||||||
|
# If preinst fails during upgrade:
|
||||||
|
# <new-postrm> abort-upgrade <old-version>
|
||||||
|
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
remove)
|
||||||
|
update-alternatives \
|
||||||
|
--remove text.plymouth /usr/share/plymouth/themes/lubuntu-next-text/lubuntu-next-text.plymouth
|
||||||
|
|
||||||
|
if which update-initramfs >/dev/null 2>&1
|
||||||
|
then
|
||||||
|
update-initramfs -u
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
exit 0
|
@ -0,0 +1,8 @@
|
|||||||
|
[Plymouth Theme]
|
||||||
|
Name=Lubuntu Logo
|
||||||
|
Description=A theme that features a blank background with a logo.
|
||||||
|
ModuleName=script
|
||||||
|
|
||||||
|
[script]
|
||||||
|
ImageDir=/usr/share/plymouth/themes/lubuntu-next-logo
|
||||||
|
ScriptFile=/usr/share/plymouth/themes/lubuntu-next-logo/lubuntu-logo.script
|
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 421 B |
After Width: | Height: | Size: 568 B |
@ -0,0 +1,11 @@
|
|||||||
|
[Plymouth Theme]
|
||||||
|
Name=Lubuntu Next Text
|
||||||
|
Description=Text mode theme based on kubuntu-logo theme
|
||||||
|
ModuleName=ubuntu-text
|
||||||
|
|
||||||
|
[ubuntu-text]
|
||||||
|
title=Lubuntu Next 18.04
|
||||||
|
black=0x0078C2
|
||||||
|
white=0xffffff
|
||||||
|
brown=0x009DFD
|
||||||
|
blue=0x00182C
|
Loading…
Reference in new issue