Summary: Custom grub theme for lubuntu. Inspired from breeze theme. Test Plan: Test whether theme gets installed by default. Reviewers: tsimonq2, wxl Subscribers: apt-ghetto Maniphest Tasks: T30 Differential Revision: https://phab.lubuntu.me/D45
25 lines
287 B
Bash
25 lines
287 B
Bash
#!/bin/sh
|
|
# postinst script for lubuntu-grub-theme
|
|
|
|
#DEBHELPER#
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
configure)
|
|
|
|
update-grub
|
|
|
|
;;
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
;;
|
|
|
|
*)
|
|
echo "postinst called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|