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