blob: d5eaf1ba449809672d75af5be413697355ed4f4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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
}
|