ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/doc/rxvt.1.pod
(Generate patch)

Comparing rxvt-unicode/doc/rxvt.1.pod (file contents):
Revision 1.257 by root, Mon Nov 22 17:01:05 2021 UTC vs.
Revision 1.260 by root, Fri Dec 23 21:46:46 2022 UTC

128 128
129=item B<-ss>|B<+ss> 129=item B<-ss>|B<+ss>
130 130
131Turn on/off skip scrolling (allow multiple screens per refresh); resource B<skipScroll>. 131Turn on/off skip scrolling (allow multiple screens per refresh); resource B<skipScroll>.
132 132
133=item B<-fps> I<number>
134
135Compile I<frills>: Set the refresh interval (in frames per second or
136negative seconds); resource B<refreshRate>.
137
133=item B<-fade> I<number> 138=item B<-fade> I<number>
134 139
135Fade the text by the given percentage when focus is lost. Small values 140Fade the text by the given percentage when focus is lost. Small values
136fade a little only, 100 completely replaces all colours by the fade 141fade a little only, 100 completely replaces all colours by the fade
137colour; resource B<fading>. 142colour; resource B<fading>.
543 use Socket; 548 use Socket;
544 use Fcntl; 549 use Fcntl;
545 550
546 socketpair my $URXVT, my $slave, Socket::AF_UNIX, Socket::SOCK_STREAM, Socket::PF_UNSPEC; 551 socketpair my $URXVT, my $slave, Socket::AF_UNIX, Socket::SOCK_STREAM, Socket::PF_UNSPEC;
547 fcntl $slave, Fcntl::F_SETFD, 0; 552 fcntl $slave, Fcntl::F_SETFD, 0;
548 system "exec @@RXVT_NAME|| -pty-fd " . (fileno $slave) . " &"; 553 system "exec @@RXVT_NAME@@ -pty-fd " . (fileno $slave) . " &";
549 close $slave; 554 close $slave;
550 555
551 syswrite $URXVT, "Type a secret password: "; 556 syswrite $URXVT, "Type a secret password: ";
552 my $secret = do { local $/ = "\r"; <$URXVT> }; 557 my $secret = do { local $/ = "\r"; <$URXVT> };
553 print "Not so secret anymore: $secret\n"; 558 print "Not so secret anymore: $secret\n";
696option B<-ss>. 701option B<-ss>.
697 702
698B<False>: specify that everything is to be displayed, even 703B<False>: specify that everything is to be displayed, even
699if the refresh is too fast for the human eye to read anything (or the 704if the refresh is too fast for the human eye to read anything (or the
700monitor to display anything); option B<+ss>. 705monitor to display anything); option B<+ss>.
706
707=item B<refreshRate:> I<number>
708
709Compile I<frills>: When positive, sets the maximum refreshes per second
710(the default is C<60>). When zero or negative, sets the minimum interval
711between refreshes, negated. That is, positive numbers limit the number
712of refreshes per second to that number, similar to a fps limiter in
713games. Zero or negative numbers get negated and directly set the minimum
714interval between refreshs, that is, C<10> and C<-0.1> both specify the
715same refresh interval (likewise C<50> and C<0.02>). Fractional values are
716supported; option B<-fps>.
701 717
702=item B<fading:> I<number> 718=item B<fading:> I<number>
703 719
704Fade the text by the given percentage when focus is lost; option B<-fade>. 720Fade the text by the given percentage when focus is lost; option B<-fade>.
705 721
1312C<perl-ext-common> resource. For example, C<default,-selection> will use 1328C<perl-ext-common> resource. For example, C<default,-selection> will use
1313all the default extensions except C<selection>. 1329all the default extensions except C<selection>.
1314 1330
1315To prohibit autoloading of extensions, you can prefix them with C</>, 1331To prohibit autoloading of extensions, you can prefix them with C</>,
1316which will make urxvt refuse to automatically load them (this can be 1332which will make urxvt refuse to automatically load them (this can be
1317overriden, however, by specifying the extension name again without a 1333overridden, however, by specifying the extension name again without a
1318prefix, though). This does not prohibit extensions themselves loading 1334prefix, though). This does not prohibit extensions themselves loading
1319other extensions. For example, C<default,/background> will keep the 1335other extensions. For example, C<default,/background> will keep the
1320C<background> extension from being loaded when a background OSC sequence 1336C<background> extension from being loaded when a background OSC sequence
1321is received. 1337is received.
1322 1338

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines