ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/perl/automove-background
Revision: 1.10
Committed: Fri Nov 16 10:06:41 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
CVS Tags: HEAD
Changes since 1.9: +0 -0 lines
State: FILE REMOVED
Log Message:
Nuke automove-background.

File Contents

# User Rev Content
1 root 1.1 #! perl
2    
3 root 1.9 sub xy {
4     my ($self) = @_;
5    
6     $self->XTranslateCoordinates (
7     $self->vt, $self->DefaultRootWindow,
8     0, 0
9     )
10     }
11    
12 root 1.6 sub on_osc_seq {
13     my ($self, $op, $args) = @_;
14    
15     if ($op == 20) {
16     my ($pic, $commands) = split(/;/, $args, 2);
17     if ($pic !~ /^$/ && $commands !~ /[+\-]/) {
18     my ($x, $y) = $self->XTranslateCoordinates (
19     $self->vt, $self->DefaultRootWindow,
20     0, 0
21     );
22 root 1.9 my ($x, $y) = $self->xy;
23 root 1.6 $self->cmd_parse ("\033]20;$pic;=+$x+$y\007");
24     return 1;
25     }
26     }
27    
28     ()
29     }
30    
31 root 1.1 sub on_configure_notify {
32     my ($self, $event) = @_;
33 root 1.3
34 root 1.9 my ($x, $y) = $self->xy;
35 root 1.2
36     $self->cmd_parse ("\033]20;;=+$x+$y\007");
37 root 1.8
38     ()
39 root 1.1 }