Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/remmina-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2018-08-27 00:41:22 +0300
committerAntenore Gatta <antenore@simbiosi.org>2018-08-27 00:41:22 +0300
commit7704cb4f22ad6b71c8f12ea78ac9fc9f16e12c0c (patch)
treee42d211fad0e4e57acf56fd602f32628be38e744
parent6566e1d17f38af4d5b210cc352aea4e86319a75e (diff)
Allowing send events in xterm
-rw-r--r--st_plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st_plugin.c b/st_plugin.c
index 7cd6795..f3f10a5 100644
--- a/st_plugin.c
+++ b/st_plugin.c
@@ -135,7 +135,7 @@ static gboolean remmina_plugin_st_open_connection(RemminaProtocolWidget *gp)
}else if (g_strcmp0(term, "urxvt") == 0) {
wflag = "-embed";
}else if (g_strcmp0(term, "xterm") == 0) {
- wflag = "-into";
+ wflag = "-xrm 'XTerm*allowSendEvents: true' -into";
}
if (!g_find_program_in_path(term)) {
remmina_plugin_service->protocol_plugin_set_error(gp, "%s not found", term);