blob: 30075f8c6aa1e32cbe5c378439f54257700e5756 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
post_install() {
cat << _EOF
==> vicious installation notes:
----------------------------------------
Vicious is a framework for gathering data about your system, and
creating widgets to feed them that data in statusbars of various
window managers, primarily the 'awesome' window manager. Vicious
can be used with stable versions of awesome and development code,
from the 3.4 branch or the master branch.
_EOF
}
post_upgrade() {
post_install
}
op=$1
shift
$op $*
|