* lib/plymouth/themes/lubuntu-text:
- 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.
This commit is contained in:
parent
2fc3c5db52
commit
ab6a4c4cfe
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,6 +1,11 @@
|
|||||||
lubuntu-artwork (0.12) UNRELEASED; urgency=low
|
lubuntu-artwork (0.12) UNRELEASED; urgency=low
|
||||||
|
|
||||||
*
|
* lib/plymouth/themes/lubuntu-text:
|
||||||
|
- 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.
|
||||||
|
|
||||||
-- Julien Lavergne <gilir@ubuntu.com> Fri, 01 Oct 2010 02:50:18 +0200
|
-- Julien Lavergne <gilir@ubuntu.com> Fri, 01 Oct 2010 02:50:18 +0200
|
||||||
|
|
||||||
|
9
debian/control
vendored
9
debian/control
vendored
@ -24,6 +24,15 @@ Conflicts: lubuntu-plymouth-theme
|
|||||||
Description: plymouth theme for Lubuntu
|
Description: plymouth theme for Lubuntu
|
||||||
This package contain a specific Lubuntu theme for plymouth.
|
This package contain a specific Lubuntu theme for plymouth.
|
||||||
|
|
||||||
|
Package: plymouth-theme-lubuntu-text
|
||||||
|
Architecture: all
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}, plymouth, plymouth-label
|
||||||
|
Provides: plymouth-theme
|
||||||
|
Replaces: plymouth (<< 0.8.1-1~)
|
||||||
|
Description: plymouth text theme for Lubuntu
|
||||||
|
This package contain a specific Lubuntu theme for plymouth, which display a
|
||||||
|
simple text.
|
||||||
|
|
||||||
Package: lubuntu-icon-theme
|
Package: lubuntu-icon-theme
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: ${misc:Depends}, elementary-icon-theme
|
Depends: ${misc:Depends}, elementary-icon-theme
|
||||||
|
2
debian/plymouth-theme-lubuntu-logo.install
vendored
2
debian/plymouth-theme-lubuntu-logo.install
vendored
@ -1 +1 @@
|
|||||||
lib/
|
lib/plymouth/themes/lubuntu-logo/
|
||||||
|
1
debian/plymouth-theme-lubuntu-text.install
vendored
Normal file
1
debian/plymouth-theme-lubuntu-text.install
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
lib/plymouth/themes/lubuntu-text/
|
41
debian/plymouth-theme-lubuntu-text.postinst
vendored
Normal file
41
debian/plymouth-theme-lubuntu-text.postinst
vendored
Normal file
@ -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
|
57
debian/plymouth-theme-lubuntu-text.postrm
vendored
Normal file
57
debian/plymouth-theme-lubuntu-text.postrm
vendored
Normal file
@ -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
|
11
lib/plymouth/themes/lubuntu-text/lubuntu-text.plymouth
Normal file
11
lib/plymouth/themes/lubuntu-text/lubuntu-text.plymouth
Normal file
@ -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…
x
Reference in New Issue
Block a user