
The signatures feature has been "experimental" since Perl 5.20 (May 2014), but expected to stay. After 8 years I'm ready to take the risk :) Have added Perl v5.28 (June 2018) as the minimum requirement, even though the current revbank should work with 5.20, to see if this bothers any users. Perl v5.28 is in Debian "buster", which is now oldstable.
28 lines
749 B
Perl
28 lines
749 B
Perl
#!perl
|
|
|
|
my $timeout = 10;
|
|
|
|
sub hook_prompt_idle($class, $cart, $plugin, $seconds, $readline, @) {
|
|
return unless $seconds >= $timeout and $cart->size and not $plugin;
|
|
|
|
call_hooks("beep");
|
|
|
|
return if $seconds > $timeout; # text only once
|
|
|
|
my $text = $readline->copy_text;
|
|
my $point = $readline->{point};
|
|
|
|
$readline->save_prompt;
|
|
$readline->replace_line("");
|
|
$readline->redisplay;
|
|
|
|
my $help = $cart->entries('refuse_checkout')
|
|
? "Enter 'abort' to abort."
|
|
: "Enter username to pay/finish or 'abort' to abort.";
|
|
print "\e[33;2;1mTransaction incomplete.\e[0m $help\n";
|
|
|
|
$readline->restore_prompt;
|
|
$readline->replace_line($text);
|
|
$readline->{point} = $point;
|
|
$readline->redisplay;
|
|
}
|