blob: 50405197413cfc3d8e85f1665434f72f935a138c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
. /usr/share/makepkg/util/message.sh
colorize
post_install() {
msg "Installed Catppuccin Mocha GRUB2 theme."
msg2 "To enable the theme, change 'GRUB_THEME' variable in '/etc/default/grub' file to"
msg2 "'/usr/share/grub/themes/catppuccin-mocha', uncomment it and update GRUB config with running"
msg2 "'grub-mkconfig -o /boot/grub/grub.cfg' as root."
}
post_remove() {
warning "Uninstalled Catppuccin Mocha GRUB2 theme."
msg2 "To disable the theme, comment 'GRUB_THEME' variable in '/etc/default/grub' file"
msg2 "and update GRUB config with running 'grub-mkconfig -o /boot/grub/grub.cfg' as root."
}
|