blob: 2730bd5dd0360425233e21d15ab17384d2e8e0a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
rst="$(tput sgr0)"
bld="$(tput bold)"
blu="$(tput setaf 4)"
ylw="$(tput setaf 3)"
msg() {
printf "${bld}${blu}==>${ylw} NOTE:${rst}${bld} $1${rst}\n"
}
post_install() {
msg 'An example configuration is installed at "/usr/share/doc/corky/example/".'
msg 'Start the example with "conky -c /usr/share/doc/corky/example/conky.conf".'
}
post_upgrade() {
post_install
}
|