From 0313a4089306caedfdc001644a4b4ec76cb2d31a Mon Sep 17 00:00:00 2001 From: B Stack Date: Tue, 10 Sep 2019 23:10:44 -0400 Subject: initial commit Baseline child packages are tested, minus plymouth and greeter; Plymouth is not packaged for devuan (banned because of systemd) and greeter depends on lightdm-webkit-greeter which I need to build. --- chicago95/debian/chicago95-theme-plymouth.postinst | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 chicago95/debian/chicago95-theme-plymouth.postinst (limited to 'chicago95/debian/chicago95-theme-plymouth.postinst') diff --git a/chicago95/debian/chicago95-theme-plymouth.postinst b/chicago95/debian/chicago95-theme-plymouth.postinst new file mode 100644 index 0000000..89f4ae8 --- /dev/null +++ b/chicago95/debian/chicago95-theme-plymouth.postinst @@ -0,0 +1,19 @@ +#!/bin/sh +set -e + +case "$1" in + configure| abort-upgrade|abort-remove|abort-deconfigure) + update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/Chicago95/Chicago95.plymouth 80 + update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/Retrotux/Retrotux.plymouth 70 + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + + +#DEBHELPER# + +exit 0 -- cgit