blob: e032bd84d982fb4636b7e889c08461609a32fa3c (
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
26
27
28
|
post_install() {
cat << EOF
==> Make a backup of ~/.bash_aliases before running this executable.
==> The programm also adds a new line to your ~/.bashrc
==> source ~/.config/bash-config/bashrc.bash
EOF
}
post_remove() {
cat << EOF
==> To clean up:
==> All alias changes have been made in ~/.bash_aliases
==> Prompt changes are in ~/.config/bash-config
==> This file is included at the end of ~/.bashrc
==> If you choose the fancy prompt, you will miss now the fancy-prompts.bash
==> file and must edit one of the above mentiond files.
EOF
}
|