blob: 2ee98ef3a13e0e5f3fff4f6105ef3e698170e0db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#! /usr/bin/env perl -w
# Author: Aaron Caffrey
# Website: https://github.com/wifiextender/urxvt-pasta
# License: GPLv3
# Usage: put the following lines in your .Xdefaults/.Xresources:
# URxvt.perl-ext-common : selection-to-clipboard,pasta
# URxvt.keysym.Control-Shift-V : perl:pasta:paste
use strict;
sub on_user_command {
my ($self, $cmd) = @_;
if ($cmd eq "pasta:paste") {
$self->selection_request (urxvt::CurrentTime, 3);
}
()
}
|