blob: 140e64a425cd62a360401b1f3ee19a51aa0e0ba4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
post_install() {
# do something here
cat <<HELPEOF
[NOTE]
1) Do not forget to prepend the 'setvtrgb' hook in your '/etc/mkinitcpio.conf'.
It should be the first 'HOOKS=(setvtrgb [...]'
2) configure your desired colorscheme by creating a symlink to '/etc/vtrgb':
'ln -sf /usr/share/kbd/consolecolors/base16-tomorrow.vga /etc/vtrgb'
3) Recreate your initramfs, in most cases with 'mkinitcpio -p linux'
HELPEOF
}
post_remove() {
cat <<HELPEOF
Do not forget to remove the setvtrgb hook from '/etc/mkinitcpio.conf' and
recreate your initcpio image most commonly with 'mkinitcpio -p linux'
HELPEOF
}
|