blob: b095a7c15efc00619e0ea94660b00427344c0158 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Message displayed for a fresh install.
post_install()
{
echo "================================================================="
echo "The script is installed in /usr/lib/[he]xchat/plugins/. You must"
echo "copy it in \$HOME/.xchat2/ or \$HOME/.config/hexchat/ and edit"
echo "the \$codepage variable to suit your needs. You also MUST set the"
echo "xchat/hexchat charset to utf8 (/charset UTF8 )"
echo "================================================================="
}
# Message for an update.
post_upgrade()
{
echo "================================================================="
echo "The script is installed in /usr/lib/[he]xchat/plugins/. You must"
echo "copy it in \$HOME/.xchat2/ or \$HOME/.config/hexchat/ and edit"
echo "the \$codepage variable to suit your needs. You also MUST set the"
echo "xchat/hexchat charset to utf8 (/charset UTF8 )"
echo "================================================================="
}
|