ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/perl/background
(Generate patch)

Comparing rxvt-unicode/src/perl/background (file contents):
Revision 1.64 by root, Tue Jun 19 20:49:53 2012 UTC vs.
Revision 1.96 by root, Tue Sep 17 17:57:49 2019 UTC

1#! perl 1#! perl
2 2
3#:META:X_RESOURCE:%.expr:string:background expression 3#:META:RESOURCE:%.expr:string:background expression
4#:META:X_RESOURCE:%.border:boolean:respect the terminal border 4#:META:RESOURCE:%.border:boolean:respect the terminal border
5#:META:X_RESOURCE:%.interval:seconds:minimum time between updates 5#:META:RESOURCE:%.interval:seconds:minimum time between updates
6#:META:RESOURCE:pixmap:file[;geom]:set image as background
7#:META:RESOURCE:backgroundPixmap:file[;geom]:set image as background
8#:META:RESOURCE:tr:boolean:set root pixmap as background
9#:META:RESOURCE:transparent:boolean:set root pixmap as background
10#:META:RESOURCE:tint:color:tint background with color
11#:META:RESOURCE:tintColor:color:tint background with color
12#:META:RESOURCE:sh:number:shade background by number %
13#:META:RESOURCE:shading:number:shade background by number %
14#:META:RESOURCE:blr:HxV:gaussian-blur background with radii
15#:META:RESOURCE:blurRadius:HxV:gaussian-blur background with radii
6 16
7=head1 NAME 17=head1 NAME
8 18
9 background - manage terminal background 19background - manage terminal background
10 20
11=head1 SYNOPSIS 21=head1 SYNOPSIS
12 22
13 urxvt --background-expr 'background expression' 23 urxvt --background-expr 'background expression'
14 --background-border 24 --background-border
15 --background-interval seconds 25 --background-interval seconds
16 26
27=head1 QUICK AND DIRTY CHEAT SHEET
28
29Just load a random jpeg image and tile the background with it without
30scaling or anything else:
31
32 load "/path/to/img.jpg"
33
34The same, but use mirroring/reflection instead of tiling:
35
36 mirror load "/path/to/img.jpg"
37
38Load an image and scale it to exactly fill the terminal window:
39
40 scale keep { load "/path/to/img.jpg" }
41
42Implement pseudo-transparency by using a suitably-aligned root pixmap
43as window background:
44
45 rootalign root
46
47Likewise, but keep a blurred copy:
48
49 rootalign keep { blur 10, root }
50
17=head1 DESCRIPTION 51=head1 DESCRIPTION
18 52
19This extension manages the terminal background by creating a picture that 53This extension manages the terminal background by creating a picture that
20is behind the text, replacing the normal background colour. 54is behind the text, replacing the normal background colour.
21 55
30 64
31 urxvt --background-expr 'scale keep { load "/path/to/mybg.png" }' 65 urxvt --background-expr 'scale keep { load "/path/to/mybg.png" }'
32 66
33Or specified as a X resource: 67Or specified as a X resource:
34 68
35 URxvt.background-expr: scale keep { load "/path/to/mybg.png" } 69 URxvt.background.expr: scale keep { load "/path/to/mybg.png" }
36 70
37=head1 THEORY OF OPERATION 71=head1 THEORY OF OPERATION
38 72
39At startup, just before the window is mapped for the first time, the 73At startup, just before the window is mapped for the first time, the
40expression is evaluated and must yield an image. The image is then 74expression is evaluated and must yield an image. The image is then
73 } else { 107 } else {
74 return load "$HOME/sunday.png"; 108 return load "$HOME/sunday.png";
75 } 109 }
76 } 110 }
77 111
78This expression is evaluated once per hour. It will set F<sunday.png> as 112This inner expression is evaluated once per hour (and whenever the
113terminal window is resized). It sets F<sunday.png> as background on
79background on Sundays, and F<weekday.png> on all other days. 114Sundays, and F<weekday.png> on all other days.
80 115
81Fortunately, we expect that most expressions will be much simpler, with 116Fortunately, we expect that most expressions will be much simpler, with
82little Perl knowledge needed. 117little Perl knowledge needed.
83 118
84Basically, you always start with a function that "generates" an image 119Basically, you always start with a function that "generates" an image
107get a percentage): 142get a percentage):
108 143
109 scale 2, load "$HOME/mypic.png" 144 scale 2, load "$HOME/mypic.png"
110 145
111This enlarges the image by a factor of 2 (200%). As you can see, C<scale> 146This enlarges the image by a factor of 2 (200%). As you can see, C<scale>
112has now two arguments, the C<200> and the C<load> expression, while 147has now two arguments, the C<2> and the C<load> expression, while
113C<load> only has one argument. Arguments are separated from each other by 148C<load> only has one argument. Arguments are separated from each other by
114commas. 149commas.
115 150
116Scale also accepts two arguments, which are then separate factors for both 151Scale also accepts two arguments, which are then separate factors for both
117horizontal and vertical dimensions. For example, this halves the image 152horizontal and vertical dimensions. For example, this halves the image
118width and doubles the image height: 153width and doubles the image height:
119 154
120 scale 0.5, 2, load "$HOME/mypic.png" 155 scale 0.5, 2, load "$HOME/mypic.png"
121 156
122IF you try out these expressions, you might suffer from sluggishness, 157IF you try out these expressions, you might suffer from some sluggishness,
123because each time the terminal is resized, it again loads the PNG image 158because each time the terminal is resized, it loads the PNG image again
124and scales it. Scaling is usually fats, but loading the image can be quite 159and scales it. Scaling is usually fast (and unavoidable), but loading the
125time consuming. This is where C<keep> comes in handy: 160image can be quite time consuming. This is where C<keep> comes in handy:
126 161
127 scale 0.5, 2, keep { load "$HOME/mypic.png" } 162 scale 0.5, 2, keep { load "$HOME/mypic.png" }
128 163
129The C<keep> operator executes all the statements inside the braces only 164The C<keep> operator executes all the statements inside the braces only
130once, or when it thinks the outcome might change. In other cases it 165once, or when it thinks the outcome might change. In other cases it
131returns the last value computed by the brace block. 166returns the last value computed by the brace block.
132 167
133This means that the C<load> is only executed once, which makes it much 168This means that the C<load> is only executed once, which makes it much
134faster, but alos means that more memory is being used, because the loaded 169faster, but also means that more memory is being used, because the loaded
135image must be kept in memory at all times. In this expression, the 170image must be kept in memory at all times. In this expression, the
136trade-off is likely worth it. 171trade-off is likely worth it.
137 172
138But back to effects: Other effects than scaling are also readily 173But back to effects: Other effects than scaling are also readily
139available, for example, you can tile the image to fill the whole window, 174available, for example, you can tile the image to fill the whole window,
152Another common background expression is: 187Another common background expression is:
153 188
154 rootalign root 189 rootalign root
155 190
156This one first takes a snapshot of the screen background image, and then 191This one first takes a snapshot of the screen background image, and then
157moves it to the upper left corner of the screen (as opposed to the upepr 192moves it to the upper left corner of the screen (as opposed to the upper
158left corner of the terminal window)- the result is pseudo-transparency: 193left corner of the terminal window)- the result is pseudo-transparency:
159the image seems to be static while the window is moved around. 194the image seems to be static while the window is moved around.
195
196=head2 COLOUR SPECIFICATIONS
197
198Whenever an operator expects a "colour", then this can be specified in one
199of two ways: Either as string with an X11 colour specification, such as:
200
201 "red" # named colour
202 "#f00" # simple rgb
203 "[50]red" # red with 50% alpha
204 "TekHVC:300/50/50" # anything goes
205
206OR as an array reference with one, three or four components:
207
208 [0.5] # 50% gray, 100% alpha
209 [0.5, 0, 0] # dark red, no green or blur, 100% alpha
210 [0.5, 0, 0, 0.7] # same with explicit 70% alpha
160 211
161=head2 CACHING AND SENSITIVITY 212=head2 CACHING AND SENSITIVITY
162 213
163Since some operations (such as C<load> and C<blur>) can take a long time, 214Since some operations (such as C<load> and C<blur>) can take a long time,
164caching results can be very important for a smooth operation. Caching can 215caching results can be very important for a smooth operation. Caching can
171The most important way to cache expensive operations is to use C<keep { 222The most important way to cache expensive operations is to use C<keep {
172... }>. The C<keep> operator takes a block of multiple statements enclosed 223... }>. The C<keep> operator takes a block of multiple statements enclosed
173by C<{}> and keeps the return value in memory. 224by C<{}> and keeps the return value in memory.
174 225
175An expression can be "sensitive" to various external events, such as 226An expression can be "sensitive" to various external events, such as
176scaling or moving the window, root backgorund changes and timers. Simply 227scaling or moving the window, root background changes and timers. Simply
177using an expression (such as C<scale> without parameters) that depend on 228using an expression (such as C<scale> without parameters) that depends on
178certain changing values (called "variables"), or using those variables 229certain changing values (called "variables"), or using those variables
179directly, will make an expression sensitive to these events - for example, 230directly, will make an expression sensitive to these events - for example,
180using C<scale> or C<TW> will make the expression sensitive to the terminal 231using C<scale> or C<TW> will make the expression sensitive to the terminal
181size, and thus to resizing events. 232size, and thus to resizing events.
182 233
183When such an event happens, C<keep> will automatically trigger a 234When such an event happens, C<keep> will automatically trigger a
184reevaluation of the whole expression with the new value of the expression. 235reevaluation of the whole expression with the new value of the expression.
185 236
186C<keep> is most useful for expensive operations, such as C<blur>: 237C<keep> is most useful for expensive operations, such as C<blur>:
187 238
188 rootalign once { blur 20, root } 239 rootalign keep { blur 20, root }
189 240
190This makes a blurred copy of the root background once, and on subsequent 241This makes a blurred copy of the root background once, and on subsequent
191calls, just root-aligns it. Since C<blur> is usually quite slow and 242calls, just root-aligns it. Since C<blur> is usually quite slow and
192C<rootalign> is quite fast, this trades extra memory (for the cached 243C<rootalign> is quite fast, this trades extra memory (for the cached
193blurred pixmap) with speed (blur only needs to be redone when root 244blurred pixmap) with speed (blur only needs to be redone when root
238=cut 289=cut
239 290
240our %_IMG_CACHE; 291our %_IMG_CACHE;
241our $HOME; 292our $HOME;
242our ($self, $frame); 293our ($self, $frame);
243our ($x, $y, $w, $h); 294our ($x, $y, $w, $h, $focus);
244 295
245# enforce at least this interval between updates 296# enforce at least this interval between updates
246our $MIN_INTERVAL = 6/59.951; 297our $MIN_INTERVAL = 6/59.951;
247 298
248{ 299{
266=item load $path 317=item load $path
267 318
268Loads the image at the given C<$path>. The image is set to plane tiling 319Loads the image at the given C<$path>. The image is set to plane tiling
269mode. 320mode.
270 321
271If the image is already in memory (e.g. because another temrinal instance 322If the image is already in memory (e.g. because another terminal instance
272uses it), then the in-memory copy us returned instead. 323uses it), then the in-memory copy is returned instead.
273 324
274=item load_uc $path 325=item load_uc $path
275 326
276Load uncached - same as load, but does not cache the image, which means it 327Load uncached - same as load, but does not cache the image, which means it
277is I<always> loaded from the filesystem again. 328is I<always> loaded from the filesystem again, even if another copy of it
329is in memory at the time.
278 330
279=cut 331=cut
280 332
281 sub load_uc($) { 333 sub load_uc($) {
282 $self->new_img_from_file ($path) 334 $self->new_img_from_file ($_[0])
283 } 335 }
284 336
285 sub load($) { 337 sub load($) {
286 my ($path) = @_; 338 my ($path) = @_;
287 339
340 392
341=item merge $img ... 393=item merge $img ...
342 394
343Takes any number of images and merges them together, creating a single 395Takes any number of images and merges them together, creating a single
344image containing them all. The tiling mode of the first image is used as 396image containing them all. The tiling mode of the first image is used as
345the tiling mdoe of the resulting image. 397the tiling mode of the resulting image.
346 398
347This function is called automatically when an expression returns multiple 399This function is called automatically when an expression returns multiple
348images. 400images.
349 401
350=cut 402=cut
379 $base->draw ($_) 431 $base->draw ($_)
380 for @_; 432 for @_;
381 433
382 $base 434 $base
383 } 435 }
436
437=back
384 438
385=head2 TILING MODES 439=head2 TILING MODES
386 440
387The following operators modify the tiling mode of an image, that is, the 441The following operators modify the tiling mode of an image, that is, the
388way that pixels outside the image area are painted when the image is used. 442way that pixels outside the image area are painted when the image is used.
480 534
481Return the X and Y coordinates of the terminal window (the terminal 535Return the X and Y coordinates of the terminal window (the terminal
482window is the full window by default, and the character area only when in 536window is the full window by default, and the character area only when in
483border-respect mode). 537border-respect mode).
484 538
485Using these functions make your expression sensitive to window moves. 539Using these functions makes your expression sensitive to window moves.
486 540
487These functions are mainly useful to align images to the root window. 541These functions are mainly useful to align images to the root window.
488 542
489Example: load an image and align it so it looks as if anchored to the 543Example: load an image and align it so it looks as if anchored to the
490background (that's exactly what C<rootalign> does btw.): 544background (that's exactly what C<rootalign> does btw.):
491 545
492 move -TX, -TY, keep { load "mybg.png" } 546 move -TX, -TY, keep { load "mybg.png" }
493 547
494=item TW 548=item TW
549
550=item TH
495 551
496Return the width (C<TW>) and height (C<TH>) of the terminal window (the 552Return the width (C<TW>) and height (C<TH>) of the terminal window (the
497terminal window is the full window by default, and the character area only 553terminal window is the full window by default, and the character area only
498when in border-respect mode). 554when in border-respect mode).
499 555
500Using these functions make your expression sensitive to window resizes. 556Using these functions makes your expression sensitive to window resizes.
501 557
502These functions are mainly useful to scale images, or to clip images to 558These functions are mainly useful to scale images, or to clip images to
503the window size to conserve memory. 559the window size to conserve memory.
504 560
505Example: take the screen background, clip it to the window size, blur it a 561Example: take the screen background, clip it to the window size, blur it a
506bit, align it to the window position and use it as background. 562bit, align it to the window position and use it as background.
507 563
508 clip move -TX, -TY, keep { blur 5, root } 564 clip move -TX, -TY, keep { blur 5, root }
509 565
510=cut 566=item FOCUS
511 567
568Returns a boolean indicating whether the terminal window has keyboard
569focus, in which case it returns true.
570
571Using this function makes your expression sensitive to focus changes.
572
573A common use case is to fade the background image when the terminal loses
574focus, often together with the C<-fade> command line option. In fact,
575there is a special function for just that use case: C<focus_fade>.
576
577Example: use two entirely different background images, depending on
578whether the window has focus.
579
580 FOCUS ? keep { load "has_focus.jpg" } : keep { load "no_focus.jpg" }
581
582=cut
583
512 sub TX() { $frame->[FR_AGAIN]{position} = 1; $x } 584 sub TX () { $frame->[FR_AGAIN]{position} = 1; $x }
513 sub TY() { $frame->[FR_AGAIN]{position} = 1; $y } 585 sub TY () { $frame->[FR_AGAIN]{position} = 1; $y }
514 sub TW() { $frame->[FR_AGAIN]{size} = 1; $w } 586 sub TW () { $frame->[FR_AGAIN]{size} = 1; $w }
515 sub TH() { $frame->[FR_AGAIN]{size} = 1; $h } 587 sub TH () { $frame->[FR_AGAIN]{size} = 1; $h }
588 sub FOCUS() { $frame->[FR_AGAIN]{focus} = 1; $focus }
516 589
517=item now 590=item now
518 591
519Returns the current time as (fractional) seconds since the epoch. 592Returns the current time as (fractional) seconds since the epoch.
520 593
567Clips an image to the given rectangle. If the rectangle is outside the 640Clips an image to the given rectangle. If the rectangle is outside the
568image area (e.g. when C<$x> or C<$y> are negative) or the rectangle is 641image area (e.g. when C<$x> or C<$y> are negative) or the rectangle is
569larger than the image, then the tiling mode defines how the extra pixels 642larger than the image, then the tiling mode defines how the extra pixels
570will be filled. 643will be filled.
571 644
572If C<$x> an C<$y> are missing, then C<0> is assumed for both. 645If C<$x> and C<$y> are missing, then C<0> is assumed for both.
573 646
574If C<$width> and C<$height> are missing, then the window size will be 647If C<$width> and C<$height> are missing, then the window size will be
575assumed. 648assumed.
576 649
577Example: load an image, blur it, and clip it to the window size to save 650Example: load an image, blur it, and clip it to the window size to save
595=item scale $width_factor, $height_factor, $img 668=item scale $width_factor, $height_factor, $img
596 669
597Scales the image by the given factors in horizontal 670Scales the image by the given factors in horizontal
598(C<$width>) and vertical (C<$height>) direction. 671(C<$width>) and vertical (C<$height>) direction.
599 672
600If only one factor is give, it is used for both directions. 673If only one factor is given, it is used for both directions.
601 674
602If no factors are given, scales the image to the window size without 675If no factors are given, scales the image to the window size without
603keeping aspect. 676keeping aspect.
604 677
605=item resize $width, $height, $img 678=item resize $width, $height, $img
730=item rotate $center_x, $center_y, $degrees, $img 803=item rotate $center_x, $center_y, $degrees, $img
731 804
732Rotates the image clockwise by C<$degrees> degrees, around the point at 805Rotates the image clockwise by C<$degrees> degrees, around the point at
733C<$center_x> and C<$center_y> (specified as factor of image width/height). 806C<$center_x> and C<$center_y> (specified as factor of image width/height).
734 807
735Example: rotate the image by 90 degrees around it's center. 808Example: rotate the image by 90 degrees around its center.
736 809
737 rotate 0.5, 0.5, 90, keep { load "$HOME/mybg.png" } 810 rotate 0.5, 0.5, 90, keep { load "$HOME/mybg.png" }
738 811
739=cut 812=cut
740 813
753 826
754The following operators change the pixels of the image. 827The following operators change the pixels of the image.
755 828
756=over 4 829=over 4
757 830
831=item tint $color, $img
832
833Tints the image in the given colour.
834
835Example: tint the image red.
836
837 tint "red", load "rgb.png"
838
839Example: the same, but specify the colour by component.
840
841 tint [1, 0, 0], load "rgb.png"
842
843=cut
844
845 sub tint($$) {
846 $_[1]->tint ($_[0])
847 }
848
849=item shade $factor, $img
850
851Shade the image by the given factor.
852
853=cut
854
855 sub shade($$) {
856 $_[1]->shade ($_[0])
857 }
858
758=item contrast $factor, $img 859=item contrast $factor, $img
759 860
760=item contrast $r, $g, $b, $img 861=item contrast $r, $g, $b, $img
761 862
762=item contrast $r, $g, $b, $a, $img 863=item contrast $r, $g, $b, $a, $img
791latter in a white picture. 892latter in a white picture.
792 893
793Due to idiosyncrasies in the underlying XRender extension, biases less 894Due to idiosyncrasies in the underlying XRender extension, biases less
794than zero can be I<very> slow. 895than zero can be I<very> slow.
795 896
897You can also try the experimental(!) C<muladd> operator.
898
796=cut 899=cut
797 900
798 sub contrast($$;$$;$) { 901 sub contrast($$;$$;$) {
799 my $img = pop; 902 my $img = pop;
800 my ($r, $g, $b, $a) = @_; 903 my ($r, $g, $b, $a) = @_;
815 $a = 1 if @_ < 4; 918 $a = 1 if @_ < 4;
816 919
817 $img = $img->clone; 920 $img = $img->clone;
818 $img->brightness ($r, $g, $b, $a); 921 $img->brightness ($r, $g, $b, $a);
819 $img 922 $img
923 }
924
925=item muladd $mul, $add, $img # EXPERIMENTAL
926
927First multiplies the pixels by C<$mul>, then adds C<$add>. This can be used
928to implement brightness and contrast at the same time, with a wider value
929range than contrast and brightness operators.
930
931Due to numerous bugs in XRender implementations, it can also introduce a
932number of visual artifacts.
933
934Example: increase contrast by a factor of C<$c> without changing image
935brightness too much.
936
937 muladd $c, (1 - $c) * 0.5, $img
938
939=cut
940
941 sub muladd($$$) {
942 $_[2]->muladd ($_[0], $_[1])
820 } 943 }
821 944
822=item blur $radius, $img 945=item blur $radius, $img
823 946
824=item blur $radius_horz, $radius_vert, $img 947=item blur $radius_horz, $radius_vert, $img
836 sub blur($$;$) { 959 sub blur($$;$) {
837 my $img = pop; 960 my $img = pop;
838 $img->blur ($_[0], @_ >= 2 ? $_[1] : $_[0]) 961 $img->blur ($_[0], @_ >= 2 ? $_[1] : $_[0])
839 } 962 }
840 963
964=item focus_fade $img
965
966=item focus_fade $factor, $img
967
968=item focus_fade $factor, $color, $img
969
970Fades the image by the given factor (and colour) when focus is lost (the
971same as the C<-fade>/C<-fadecolor> command line options, which also supply
972the default values for C<factor> and C<$color>. Unlike with C<-fade>, the
973C<$factor> is a real value, not a percentage value (that is, 0..1, not
9740..100).
975
976Example: do the right thing when focus fading is requested.
977
978 focus_fade load "mybg.jpg";
979
980=cut
981
982 sub focus_fade($;$$) {
983 my $img = pop;
984
985 return $img
986 if FOCUS;
987
988 my $fade = @_ >= 1 ? $_[0] : defined $self->resource ("fade") ? $self->resource ("fade") * 0.01 : 0;
989 my $color = @_ >= 2 ? $_[1] : $self->resource ("color+" . urxvt::Color_fade);
990
991 $img = $img->tint ($color) if $color ne "rgb:00/00/00";
992 $img = $img->muladd (1 - $fade, 0) if $fade;
993
994 $img
995 }
996
841=back 997=back
842 998
843=head2 OTHER STUFF 999=head2 OTHER STUFF
844 1000
845Anything that didn't fit any of the other categories, even after applying 1001Anything that didn't fit any of the other categories, even after applying
846force and closing our eyes. 1002force and closing our eyes.
847 1003
848=over 4 1004=over 4
849 1005
850=item once { ... } 1006=item keep { ... }
851 1007
852This function takes a code block as argument, that is, one or more 1008This operator takes a code block as argument, that is, one or more
853statements enclosed by braces. 1009statements enclosed by braces.
854 1010
855The trick is that this code block is only evaluated once - future calls 1011The trick is that this code block is only evaluated when the outcome
856will simply return the original image (yes, it should only be used with 1012changes - on other calls the C<keep> simply returns the image it computed
857images). 1013previously (yes, it should only be used with images). Or in other words,
1014C<keep> I<caches> the result of the code block so it doesn't need to be
1015computed again.
858 1016
859This can be extremely useful to avoid redoing the same slow operations 1017This can be extremely useful to avoid redoing slow operations - for
860again and again- for example, if your background expression takes the root 1018example, if your background expression takes the root background, blurs it
861background, blurs it and then root-aligns it it would have to blur the 1019and then root-aligns it it would have to blur the root background on every
862root background on every window move or resize. 1020window move or resize.
1021
1022Another example is C<load>, which can be quite slow.
863 1023
864In fact, urxvt itself encloses the whole expression in some kind of 1024In fact, urxvt itself encloses the whole expression in some kind of
865C<once> block so it only is reevaluated as required. 1025C<keep> block so it only is reevaluated as required.
866 1026
867Putting the blur into a C<once> block will make sure the blur is only done 1027Putting the blur into a C<keep> block will make sure the blur is only done
868once: 1028once, while the C<rootalign> is still done each time the window moves.
869 1029
870 rootlign once { blur 10, root } 1030 rootalign keep { blur 10, root }
871 1031
872This leaves the question of how to force reevaluation of the block, 1032This leaves the question of how to force reevaluation of the block,
873in case the root background changes: If expression inside the block 1033in case the root background changes: If expression inside the block
874is sensitive to some event (root background changes, window geometry 1034is sensitive to some event (root background changes, window geometry
875changes), then it will be reevaluated automatically as needed. 1035changes), then it will be reevaluated automatically as needed.
876 1036
877=item once_again 1037=back
878 1038
879Resets all C<once> block as if they had never been called, i.e. on the 1039=head1 OLD BACKGROUND IMAGE SETTINGS
880next call they will be reevaluated again.
881 1040
882=cut 1041This extension also provides support for the old options/resources and
1042OSC sequences for setting a background image. These settings are
1043B<deprecated> and will be removed in future versions.
883 1044
1045=head2 OPTIONS AND RESOURCES
1046
1047=over 4
1048
1049=item B<-pixmap> I<file[;oplist]>
1050
1051=item B<backgroundPixmap:> I<file[;oplist]>
1052
1053Use the specified image file as the window's background and also
1054optionally specify a colon separated list of operations to modify it.
1055Note that you may need to quote the C<;> character when using the
1056command line option, as C<;> is usually a metacharacter in shells.
1057Supported operations are:
1058
1059=over 4
1060
1061=item B<WxH+X+Y>
1062
1063sets scale and position. B<"W" / "H"> specify the horizontal/vertical
1064scale (percent), and B<"X" / "Y"> locate the image centre (percent). A
1065scale of 0 disables scaling.
1066
1067=item B<op=tile>
1068
1069enables tiling
1070
1071=item B<op=keep-aspect>
1072
1073maintain the image aspect ratio when scaling
1074
1075=item B<op=root-align>
1076
1077use the position of the terminal window relative to the root window as
1078the image offset, simulating a root window background
1079
1080=back
1081
1082The default scale and position setting is C<100x100+50+50>.
1083Alternatively, a predefined set of templates can be used to achieve
1084the most common setups:
1085
1086=over 4
1087
1088=item B<style=tiled>
1089
1090the image is tiled with no scaling. Equivalent to 0x0+0+0:op=tile
1091
1092=item B<style=aspect-stretched>
1093
1094the image is scaled to fill the whole window maintaining the aspect
1095ratio and centered. Equivalent to 100x100+50+50:op=keep-aspect
1096
1097=item B<style=stretched>
1098
1099the image is scaled to fill the whole window. Equivalent to 100x100
1100
1101=item B<style=centered>
1102
1103the image is centered with no scaling. Equivalent to 0x0+50+50
1104
1105=item B<style=root-tiled>
1106
1107the image is tiled with no scaling and using 'root' positioning.
1108Equivalent to 0x0:op=tile:op=root-align
1109
1110=back
1111
1112If multiple templates are specified the last one wins. Note that a
1113template overrides all the scale, position and operations settings.
1114
1115If used in conjunction with pseudo-transparency, the specified image
1116will be blended over the transparent background using alpha-blending.
1117
1118=item B<-tr>|B<+tr>
1119
1120=item B<transparent:> I<boolean>
1121
1122Turn on/off pseudo-transparency by using the root pixmap as background.
1123
1124=item B<-tint> I<colour>
1125
1126=item B<tintColor:> I<colour>
1127
1128Tint the transparent background with the given colour. Note that a
1129black tint yields a completely black image while a white tint yields
1130the image unchanged.
1131
1132=item B<-sh> I<number>
1133
1134=item B<shading:> I<number>
1135
1136Darken (0 .. 99) or lighten (101 .. 200) the transparent background.
1137A value of 100 means no shading.
1138
1139=item B<-blr> I<HxV>
1140
1141=item B<blurRadius:> I<HxV>
1142
1143Apply gaussian blur with the specified radius to the transparent
1144background. If a single number is specified, the vertical and
1145horizontal radii are considered to be the same. Setting one of the
1146radii to 1 and the other to a large number creates interesting effects
1147on some backgrounds. The maximum radius value is 128. An horizontal or
1148vertical radius of 0 disables blurring.
1149
1150=back
1151
1152=head2 OSC sequences
1153
1154=over 4
1155
1156=item B<< C<ESC ] 705 ; Pt ST> >> Change transparent background tint colour to B<< C<Pt> >>.
1157
1158=item B<< C<ESC ] 20 ; Pt ST> >> Change/Query background image
1159parameters: the value of B<< C<Pt> >> can be one of the following
1160commands:
1161
1162=over 4
1163
1164=item B<< C<?> >>
1165
1166display scale and position in the title
1167
1168=item B<< C<;WxH+X+Y> >>
1169
1170change scale and/or position
1171
1172=item B<< C<FILE;WxH+X+Y> >>
1173
1174change background image
1175
1176=back
1177
1178=cut
1179
884 sub once(&) { 1180 sub keep(&) {
885 my $id = $_[0]+0; 1181 my $id = $_[0]+0;
886 1182
887 local $frame = $self->{frame_cache}{$id} ||= [$frame]; 1183 local $frame = $self->{frame_cache}{$id} ||= [$frame];
888 1184
889 unless ($frame->[FR_CACHE]) { 1185 unless ($frame->[FR_CACHE]) {
907 wantarray 1203 wantarray
908 ? @{ $frame->[FR_CACHE] } 1204 ? @{ $frame->[FR_CACHE] }
909 : $frame->[FR_CACHE][0] 1205 : $frame->[FR_CACHE][0]
910 } 1206 }
911 1207
912 sub once_again() { 1208# sub keep_clear() {
913 delete $self->{frame_cache}; 1209# delete $self->{frame_cache};
914 } 1210# }
915 1211
916=back 1212=back
917 1213
918=cut 1214=cut
919 1215
932 1228
933# compiles a parsed expression 1229# compiles a parsed expression
934sub set_expr { 1230sub set_expr {
935 my ($self, $expr) = @_; 1231 my ($self, $expr) = @_;
936 1232
937 $self->{root} = []; 1233 $self->{root} = []; # the outermost frame
938 $self->{expr} = $expr; 1234 $self->{expr} = $expr;
939 $self->recalculate; 1235 $self->recalculate;
940} 1236}
941 1237
942# takes a hash of sensitivity indicators and installs watchers 1238# takes a hash of sensitivity indicators and installs watchers
983 if ($again->{rootpmap}) { 1279 if ($again->{rootpmap}) {
984 $state->{rootpmap} = $self->on (rootpmap_change => $cb); 1280 $state->{rootpmap} = $self->on (rootpmap_change => $cb);
985 } else { 1281 } else {
986 delete $state->{rootpmap}; 1282 delete $state->{rootpmap};
987 } 1283 }
1284
1285 if ($again->{focus}) {
1286 $state->{focus} = $self->on (focus_in => $cb, focus_out => $cb);
1287 } else {
1288 delete $state->{focus};
1289 }
988} 1290}
989 1291
990# evaluate the current bg expression 1292# evaluate the current bg expression
991sub recalculate { 1293sub recalculate {
992 my ($arg_self) = @_; 1294 my ($arg_self) = @_;
1000 return; 1302 return;
1001 } 1303 }
1002 1304
1003 $arg_self->{next_refresh} = urxvt::NOW + $MIN_INTERVAL; 1305 $arg_self->{next_refresh} = urxvt::NOW + $MIN_INTERVAL;
1004 1306
1307 unless ($arg_self->has_render) {
1308 warn "background extension needs RENDER extension 0.10 or higher, ignoring background-expr.\n";
1309 return;
1310 }
1311
1005 # set environment to evaluate user expression 1312 # set environment to evaluate user expression
1006 1313
1007 local $self = $arg_self; 1314 local $self = $arg_self;
1008 local $HOME = $ENV{HOME}; 1315 local $HOME = $ENV{HOME};
1009 local $frame = []; 1316 local $frame = $self->{root};
1010 1317
1011 ($x, $y, $w, $h) = $self->background_geometry ($self->{border}); 1318 ($x, $y, $w, $h) = $self->background_geometry ($self->{border});
1319 $focus = $self->focus;
1012 1320
1013 # evaluate user expression 1321 # evaluate user expression
1014 1322
1015 my @img = eval { $self->{expr}->() }; 1323 my @img = eval { $self->{expr}->() };
1016 die $@ if $@; 1324 die $@ if $@;
1034# } 1342# }
1035 1343
1036 # set background pixmap 1344 # set background pixmap
1037 1345
1038 $self->set_background ($img, $self->{border}); 1346 $self->set_background ($img, $self->{border});
1039 $self->scr_recolour (0); 1347 $self->scr_recolor (0);
1040 $self->want_refresh; 1348 $self->want_refresh;
1041} 1349}
1042 1350
1351sub old_bg_opts {
1352 my ($self, $arg) = @_;
1353
1354 $arg or return;
1355
1356 my @str = split /;/, $arg;
1357
1358 return unless $str[0] or $self->{bg_opts}->{path};
1359
1360 my $bg_opts = $self->{bg_opts};
1361
1362 if ($str[0]) {
1363 $bg_opts->{tile} = 0;
1364 $bg_opts->{keep_aspect} = 0;
1365 $bg_opts->{root_align} = 0;
1366 $bg_opts->{h_scale} = $bg_opts->{v_scale} = 100;
1367 $bg_opts->{h_align} = $bg_opts->{v_align} = 50;
1368 $bg_opts->{path} = unpack "H*", $str[0];
1369 }
1370
1371 my @oplist = split /:/, $str[1];
1372
1373 for (@oplist) {
1374 if (/style=tiled/i) {
1375 $bg_opts->{tile} = 1;
1376 $bg_opts->{keep_aspect} = 0;
1377 $bg_opts->{root_align} = 0;
1378 $bg_opts->{h_scale} = $bg_opts->{v_scale} = 0;
1379 $bg_opts->{h_align} = $bg_opts->{v_align} = 0;
1380 } elsif (/style=aspect-stretched/i) {
1381 $bg_opts->{tile} = 0;
1382 $bg_opts->{keep_aspect} = 1;
1383 $bg_opts->{root_align} = 0;
1384 $bg_opts->{h_scale} = $bg_opts->{v_scale} = 100;
1385 $bg_opts->{h_align} = $bg_opts->{v_align} = 50;
1386 } elsif (/style=stretched/i) {
1387 $bg_opts->{tile} = 0;
1388 $bg_opts->{keep_aspect} = 0;
1389 $bg_opts->{root_align} = 0;
1390 $bg_opts->{h_scale} = $bg_opts->{v_scale} = 100;
1391 $bg_opts->{h_align} = $bg_opts->{v_align} = 50;
1392 } elsif (/style=centered/i) {
1393 $bg_opts->{tile} = 0;
1394 $bg_opts->{keep_aspect} = 0;
1395 $bg_opts->{root_align} = 0;
1396 $bg_opts->{h_scale} = $bg_opts->{v_scale} = 0;
1397 $bg_opts->{h_align} = $bg_opts->{v_align} = 50;
1398 } elsif (/style=root-tiled/i) {
1399 $bg_opts->{tile} = 1;
1400 $bg_opts->{keep_aspect} = 0;
1401 $bg_opts->{root_align} = 1;
1402 $bg_opts->{h_scale} = $bg_opts->{v_scale} = 0;
1403 $bg_opts->{h_align} = $bg_opts->{v_align} = 0;
1404 } elsif (/op=tile/i) {
1405 $bg_opts->{tile} = 1;
1406 } elsif (/op=keep-aspect/i) {
1407 $bg_opts->{keep_aspect} = 1;
1408 } elsif (/op=root-align/i) {
1409 $bg_opts->{root_align} = 1;
1410 } elsif (/^ =? ([0-9]+)? (?:[xX] ([0-9]+))? ([+-][0-9]+)? ([+-][0-9]+)? $/x) {
1411 my ($w, $h, $x, $y) = ($1, $2, $3, $4);
1412
1413 if ($str[0]) {
1414 $w = $h unless defined $w;
1415 $h = $w unless defined $h;
1416 $y = $x unless defined $y;
1417 }
1418
1419 $bg_opts->{h_scale} = $w if defined $w;
1420 $bg_opts->{v_scale} = $h if defined $h;
1421 $bg_opts->{h_align} = $x if defined $x;
1422 $bg_opts->{v_align} = $y if defined $y;
1423 }
1424 }
1425}
1426
1427sub old_bg_expr {
1428 my ($self) = @_;
1429
1430 my $expr;
1431
1432 my $bg_opts = $self->{bg_opts};
1433
1434 if ($bg_opts->{root} =~ /^\s*(?:true|yes|on|1)\s*$/i) {
1435 $expr .= "tile (";
1436
1437 my $shade = $bg_opts->{shade};
1438
1439 if ($shade) {
1440 $shade = List::Util::min $shade, 200;
1441 $shade = List::Util::max $shade, -100;
1442 $shade = 200 - (100 + $shade) if $shade < 0;
1443
1444 $shade = $shade * 0.01 - 1;
1445 $expr .= "shade $shade, ";
1446 }
1447
1448 my $tint = $bg_opts->{tint};
1449
1450 if ($tint) {
1451 $expr .= "tint $tint, ";
1452 }
1453
1454 my $blur = $bg_opts->{blur};
1455
1456 if ($blur and $blur =~ /^ =? ([0-9]+)? (?:[xX] ([0-9]+))? $/x) {
1457 my $hr = defined $1 ? $1 : 1;
1458 my $vr = defined $2 ? $2 : $hr;
1459
1460 if ($hr != 0 and $vr != 0) {
1461 $expr .= "blur $hr, $vr, ";
1462 }
1463 }
1464
1465 $expr .= "rootalign root)";
1466 }
1467
1468 if ($bg_opts->{path}) {
1469 my $file_expr;
1470 my $h_scale = $bg_opts->{h_scale} * 0.01;
1471 my $v_scale = $bg_opts->{v_scale} * 0.01;
1472 my $h_align = $bg_opts->{h_align} * 0.01;
1473 my $v_align = $bg_opts->{v_align} * 0.01;
1474
1475 if (!$bg_opts->{tile}) {
1476 $file_expr .= "pad (";
1477 } else {
1478 $file_expr .= "tile (";
1479 }
1480
1481 if ($bg_opts->{root_align}) {
1482 $file_expr .= "rootalign ";
1483 } else {
1484 $file_expr .= "align $h_align, $v_align, ";
1485 }
1486
1487 if ($h_scale != 0 and $v_scale != 0) {
1488 my $op = $bg_opts->{keep_aspect} ? "fit" : "resize";
1489 $file_expr .= "$op TW * $h_scale, TH * $v_scale, ";
1490 }
1491
1492 $file_expr .= "keep { load pack \"H*\", \"$bg_opts->{path}\" })";
1493
1494 if ($expr) {
1495 $expr .= ", tint (\"[50]white\", $file_expr)";
1496 } else {
1497 $expr = $file_expr;
1498 }
1499 }
1500
1501 $expr
1502}
1503
1504sub on_osc_seq {
1505 my ($self, $op, $arg) = @_;
1506
1507 $self->{bg_opts} or return;
1508
1509 $op =~ /^(?:20|705)$/ or return;
1510
1511 if ($op eq "20") {
1512 if ($arg eq "?") {
1513 my $h_scale = $self->{bg_opts}->{h_scale};
1514 my $v_scale = $self->{bg_opts}->{v_scale};
1515 my $h_align = $self->{bg_opts}->{h_align};
1516 my $v_align = $self->{bg_opts}->{v_align};
1517 $self->cmd_parse ("\033]2;[${h_scale}x${v_scale}+${h_align}+${v_align}]\007");
1518 } else {
1519 $self->old_bg_opts ($arg);
1520 my $expr = $self->old_bg_expr;
1521 $self->set_expr (parse_expr $expr) if $expr;
1522 }
1523 } elsif ($op eq "705") {
1524 $self->{bg_opts}->{tint} = $arg;
1525 my $expr = $self->old_bg_expr;
1526 $self->set_expr (parse_expr $expr) if $expr;
1527 }
1528
1529 1
1530}
1531
1532sub find_resource {
1533 my ($self, $res, $opt) = @_;
1534
1535 my $v = $self->x_resource ($opt);
1536 $v = $self->x_resource ($res) unless defined $v;
1537
1538 $v
1539}
1540
1043sub on_start { 1541sub on_start {
1044 my ($self) = @_; 1542 my ($self) = @_;
1045 1543
1046 my $expr = $self->x_resource ("%.expr") 1544 my $expr = $self->x_resource ("%.expr");
1545
1546 if (!$expr) {
1547 $self->{bg_opts} = { h_scale => 100, v_scale => 100,
1548 h_align => 50, v_align => 50 };
1549
1550 $self->{bg_opts}->{shade} = $self->find_resource ("shading", "sh");
1551 $self->{bg_opts}->{tint} = $self->find_resource ("tintColor", "tint");
1552 $self->{bg_opts}->{blur} = $self->find_resource ("blurRadius", "blr");
1553 $self->{bg_opts}->{root} = $self->find_resource ("transparent", "tr");
1554
1555 $self->old_bg_opts ($self->find_resource ("backgroundPixmap", "pixmap"));
1556 $expr = $self->old_bg_expr;
1557 }
1558
1047 or return; 1559 $expr or return;
1048
1049 $self->has_render
1050 or die "background extension needs RENDER extension 0.10 or higher, ignoring background-expr.\n";
1051 1560
1052 $self->set_expr (parse_expr $expr); 1561 $self->set_expr (parse_expr $expr);
1053 $self->{border} = $self->x_resource_boolean ("%.border"); 1562 $self->{border} = $self->x_resource_boolean ("%.border");
1054 1563
1055 $MIN_INTERVAL = $self->x_resource ("%.interval"); 1564 $MIN_INTERVAL = $self->x_resource ("%.interval");

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines