blob: ece5a83835524ddedd0037ac14b3fa69de7eaf79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
post_install() {
echo ":: To use the theme:"
echo " 1. Install it to your /boot/grub/themes folder"
echo " e.g. grub-install --themes=bsol ..."
echo " 2. Set GRUB_THEME to /boot/grub/themes/bsol/theme.txt"
echo " 3. Regenerate your GRUB configuration"
echo " e.g. grub-mkconfig -o /boot/grub/grub.cfg"
}
post_upgrade() {
echo ":: To complete the upgrade, you must re-install the theme using"
echo " grub-install and grub-config."
}
|