Nuke automove-background.
authorayin <ayin>
Fri, 16 Nov 2007 10:06:40 +0000 (10:06 +0000)
committerayin <ayin>
Fri, 16 Nov 2007 10:06:40 +0000 (10:06 +0000)
src/perl/automove-background [deleted file]
src/urxvt.pm

diff --git a/src/perl/automove-background b/src/perl/automove-background
deleted file mode 100644 (file)
index ebbc6a3..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-#! perl
-
-sub xy {
-   my ($self) = @_;
-
-   $self->XTranslateCoordinates (
-      $self->vt, $self->DefaultRootWindow,
-      0, 0
-   )
-}
-
-sub on_osc_seq {
-   my ($self, $op, $args) = @_;
-
-   if ($op == 20) {
-      my ($pic, $commands) = split(/;/, $args, 2);
-      if ($pic !~ /^$/ && $commands !~ /[+\-]/) {
-         my ($x, $y) = $self->XTranslateCoordinates (
-            $self->vt, $self->DefaultRootWindow,
-            0, 0
-         );
-         my ($x, $y) = $self->xy;
-         $self->cmd_parse ("\033]20;$pic;=+$x+$y\007");
-         return 1;
-      }
-   }
-
-   ()
-}
-
-sub on_configure_notify {
-   my ($self, $event) = @_;
-   
-   my ($x, $y) = $self->xy;
-
-   $self->cmd_parse ("\033]20;;=+$x+$y\007");
-
-   ()
-}
index b76ae776eabec79e46a2cd187e514c54c63d7d1c..1168c57ab870fca87dc258b9f1bf6c787ee79d3c 100644 (file)
@@ -42,7 +42,7 @@ You can activate them like this:
 
 Or by adding them to the resource for extensions loaded by default:
 
-  URxvt.perl-ext-common: default,automove-background,selection-autotransform
+  URxvt.perl-ext-common: default,selection-autotransform
 
 =over 4
 
@@ -305,19 +305,6 @@ extension will actually grab a physical key just for this function.
 If you want a quake-like animation, tell your window manager to do so
 (fvwm can do it).
 
-=item automove-background
-
-This is basically a very small extension that dynamically changes the
-background pixmap offset to the window position, in effect creating the
-same effect as pseudo transparency with a custom pixmap. No scaling is
-supported in this mode. Example:
-
-   @@RXVT_NAME@@ -pixmap background.xpm -pe automove-background
-
-L<http://wiki.archlinux.org/index.php/Perl_Background_Rotation/Extensions>
-shows how this extension can be used to implement an automatically blurred
-transparent background.
-
 =item block-graphics-to-ascii
 
 A not very useful example of filtering all text output to the terminal