blob: b45deb1ac1ff4025e0d3ea957d44c94b53464951 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install () {
echo "==> To enable tabbedex, place the following line in your X resources file"
echo "==> URxvt.perl-ext-common: default,tabbedex"
echo "==> If you don't have a X resources file set up, check the wiki."
echo "==> For documentation see the urxvtperl man page (section on the tabbed"
echo "==> extension), and also see the comments at the top of the tabbedex"
echo "==> source code in /usr/lib/urxvt/perl/tabbedex."
}
post_upgrade () {
post_install $1
}
# vim: set ts=4 sw=4 noet:
|