Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
fea8fb5a
Commit
fea8fb5a
authored
Feb 13, 2015
by
Horst Schirmeier
Committed by
Mike Gabriel
Feb 13, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adapt paths of keystrokes.cfg if nxagent runs as x2goagent…
Adapt paths of keystrokes.cfg if nxagent runs as x2goagent (321_nxagent_x2go-specific-keystroke-config.full.patch).
parent
e91277d0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
26 deletions
+6
-26
321_nxagent_x2go-specific-keystroke-config.full.patch
...hes/321_nxagent_x2go-specific-keystroke-config.full.patch
+0
-25
series
debian/patches/series
+0
-1
Keystroke.c
nx-X11/programs/Xserver/hw/nxagent/Keystroke.c
+6
-0
No files found.
debian/patches/321_nxagent_x2go-specific-keystroke-config.full.patch
deleted
100644 → 0
View file @
e91277d0
Description: Adapt paths of keystrokes.cfg if nxagent runs as x2goagent
Author: Horst Schirmeier <horst@schirmeier.com>
--- a/nx-X11/programs/Xserver/hw/nxagent/Keystroke.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/Keystroke.c
@@ -27,6 +27,7 @@
#include "Options.h"
#include "Keystroke.h"
#include "Drawable.h"
+#include "Init.h" /* extern int nxagentX2go */
#include <unistd.h>
@@ -261,6 +262,11 @@ static void parse_keystroke_file(void)
char *homefile = "/.nx/config/keystrokes.cfg";
char *etcfile = "/etc/nxagent/keystrokes.cfg";
+ if (nxagentX2go) {
+ homefile = "/.x2go/config/keystrokes.cfg";
+ etcfile = "/etc/x2go/keystrokes.cfg";
+ }
+
if (nxagentKeystrokeFile != NULL && access(nxagentKeystrokeFile, R_OK) == 0)
{
filename = strdup(nxagentKeystrokeFile);
debian/patches/series
View file @
fea8fb5a
321_nxagent_x2go-specific-keystroke-config.full.patch
400_nxcomp-version.full+lite.patch
#401_nxcomp_bigrequests-and-genericevent-extensions.full+lite.patch
600_nx-X11+nxcompext+nxcompshad_unique-libnames.full.patch
...
...
nx-X11/programs/Xserver/hw/nxagent/Keystroke.c
View file @
fea8fb5a
...
...
@@ -27,6 +27,7 @@
#include "Options.h"
#include "Keystroke.h"
#include "Drawable.h"
#include "Init.h"
/* extern int nxagentX2go */
#include <unistd.h>
...
...
@@ -261,6 +262,11 @@ static void parse_keystroke_file(void)
char
*
homefile
=
"/.nx/config/keystrokes.cfg"
;
char
*
etcfile
=
"/etc/nxagent/keystrokes.cfg"
;
if
(
nxagentX2go
)
{
homefile
=
"/.x2go/config/keystrokes.cfg"
;
etcfile
=
"/etc/x2go/keystrokes.cfg"
;
}
if
(
nxagentKeystrokeFile
!=
NULL
&&
access
(
nxagentKeystrokeFile
,
R_OK
)
==
0
)
{
filename
=
strdup
(
nxagentKeystrokeFile
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment