8.
- secondaryScroll is now enable by default (as per the manpage),
reported by exg.
+ - correct the description of [percent]color rgba format in the manpage.
8.0 Thu Nov 2 18:35:19 CET 2006
- combining characters cleared the area instead of creating an overlay,
(recommended, but B<MUST> have 4 digits/component) colour specifications,
in addition to the ones provided by X, where the additional A component
specifies opacity (alpha) values. The minimum value of C<0> is completely
-transparent). You can also prefix any color with C<[a]>, where C<a> is on
-to four hex digits specifiying the opacity value.
+transparent). You can also prefix any color with C<[percent]>, where
+C<percent> is a decimal percentage (0-100) that specifies the opacity of
+the color, where C<0> is completely transparent and C<100> is completelxy
+opaque.
You probably need to specify B<"-depth 32">, too, and have the luck that
your X-server uses ARGB pixel layout, as X is far from just supporting
For example, the following selects an almost completely transparent red
background, and an almost opaque pink foreground:
- @@RXVT_NAME@@ -depth 32 -bg rgba:0000/0000/0000/2222 -fg "[e]pink"
+ @@RXVT_NAME@@ -depth 32 -bg rgba:0000/0000/0000/aaaa -fg "[80]pink"
I<Please note that transparency of any kind if completely unsupported by
the author. Don't bug him with installation questions!>
}
sub condvar {
- bless \my $flag, urxvt::anyevent::condvar::
+ bless \my $flag, urxvt::anyevent::
}
-sub urxvt::anyevent::condvar::broadcast {
+sub broadcast {
${$_[0]}++;
}
-sub urxvt::anyevent::condvar::wait {
+sub wait {
unless (${$_[0]}) {
Carp::croak "AnyEvent->condvar blocking wait unsupported in urxvt, use a non-blocking API";
}
}
-sub urxvt::anyevent::one_event {
+sub one_event {
Carp::croak "AnyEvent->one_event blocking wait unsupported in urxvt, use a non-blocking API";
}