blob: ea071e2731c739d27628b8f2a713c2c97a4b2ac3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install () {
echo "==> To enable tabbedex place the following in ~/.Xdefaults"
echo "==> URxvt.perl-ext-common: default,tabbedex"
echo "==> For documentation see urxvtperl man file (section on the tabbed"
echo "==> extension), also see the comments at the top of the tabbedex source"
echo "==> code: /usr/lib/urxvt/perl/tabbedex"
}
post_upgrade () {
post_install $1
}
# vim: set ts=4 sw=4 noet:
|