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, 5 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

# Content
1 #! perl
2
3 sub xy {
4 my ($self) = @_;
5
6 $self->XTranslateCoordinates (
7 $self->vt, $self->DefaultRootWindow,
8 0, 0
9 )
10 }
11
12 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 my ($x, $y) = $self->xy;
23 $self->cmd_parse ("\033]20;$pic;=+$x+$y\007");
24 return 1;
25 }
26 }
27
28 ()
29 }
30
31 sub on_configure_notify {
32 my ($self, $event) = @_;
33
34 my ($x, $y) = $self->xy;
35
36 $self->cmd_parse ("\033]20;;=+$x+$y\007");
37
38 ()
39 }