- New text theme, based on kubuntu one. * debian/control - New lubuntu-text binary. * debian/plymouth-theme-lubuntu-text.* - Install and configure the new text theme.ubuntu/bionic
parent
2fc3c5db52
commit
ab6a4c4cfe
@ -1 +1 @@
|
|||||||
lib/
|
lib/plymouth/themes/lubuntu-logo/
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
lib/plymouth/themes/lubuntu-text/
|
@ -0,0 +1,41 @@
|
|||||||
|
#!/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/text.plymouth text.plymouth \
|
||||||
|
/lib/plymouth/themes/lubuntu-text/lubuntu-text.plymouth 150
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
exit 0
|
@ -0,0 +1,57 @@
|
|||||||
|
#!/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 /lib/plymouth/themes/lubuntu-text/lubuntu-text.plymouth
|
||||||
|
|
||||||
|
if which update-initramfs >/dev/null 2>&1
|
||||||
|
then
|
||||||
|
update-initramfs -u
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
purge)
|
||||||
|
;;
|
||||||
|
|
||||||
|
upgrade|failed-upgrade|disappear)
|
||||||
|
;;
|
||||||
|
|
||||||
|
abort-install|abort-upgrade)
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo "$0 called with unknown argument \`$1'" 1>&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
exit 0
|
@ -0,0 +1,11 @@
|
|||||||
|
[Plymouth Theme]
|
||||||
|
Name=Lubuntu Text
|
||||||
|
Description=Text mode theme based on kubuntu-logo theme
|
||||||
|
ModuleName=ubuntu-text
|
||||||
|
|
||||||
|
[ubuntu-text]
|
||||||
|
title=Lubuntu 11.04
|
||||||
|
black=0x0078C2
|
||||||
|
white=0xffffff
|
||||||
|
brown=0x009DFD
|
||||||
|
blue=0x00182C
|
Loading…
Reference in new issue