/usr/lib/urxvt/perl/kuake is in rxvt-unicode 9.14-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | #! perl
sub on_start {
my ($self) = @_;
$self->{key} = $self->{argv}[0] || "F10";
$self->{keysym} = $self->XStringToKeysym ($self->{key})
or urxvt::fatal "cannot convert requested kuake wake-up key '$self->{key}' to keysym, unable to continue.\n";
$self->{keycode} = $self->XKeysymToKeycode ($self->{keysym})
or urxvt::fatal "cannot convert requested kuake wake-up key '$self->{key}' to keycode, unable to continue.\n";
$self->XGrabKey ($self->{keycode}, urxvt::AnyModifier, $self->DefaultRootWindow);
$self->XUnmapWindow ($self->parent);
$self->{unmap_me} = 1;
()
}
sub on_map_notify {
my ($self) = @_;
# suppress initial map event
$self->XUnmapWindow ($self->parent)
if delete $self->{unmap_me};
()
}
sub on_root_event {
my ($self, $event) = @_;
return unless $event->{type} == urxvt::KeyPress && $event->{keycode} == $self->{keycode};
$self->mapped
? $self->XUnmapWindow ($self->parent)
: $self->XMapWindow ($self->parent);
1
}
sub on_destroy {
my ($self) = @_;
$self->XUngrabKey ($self->XKeysymToKeycode ($self->{keysym}), 0, $self->DefaultRootWindow)
if $self->{keysym};
()
}
|