diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2021-05-01 19:53:17 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-06-08 08:23:36 +0200 |
commit | fcc1b57fb980b821138301a9585b91d10bfd0901 (patch) | |
tree | 977e12e055ffb34eb671eaa428afd22633cf6d48 | |
parent | 9f1d0a807fd4da80e366d439b945e924bd2cfe95 (diff) | |
download | nx-libs-fcc1b57fb980b821138301a9585b91d10bfd0901.tar.gz nx-libs-fcc1b57fb980b821138301a9585b91d10bfd0901.tar.bz2 nx-libs-fcc1b57fb980b821138301a9585b91d10bfd0901.zip |
nxagent: add missing command line switches to usage text
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Args.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Args.c b/nx-X11/programs/Xserver/hw/nxagent/Args.c index b1c0231f1..be13efacd 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Args.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Args.c @@ -2112,6 +2112,9 @@ void ddxUseMsg(void) ErrorF("-autodpi detect real server's DPI and use that in the session\n"); ErrorF("-display string display name of the real server\n"); ErrorF("-sync synchronize with the real server\n"); + ErrorF("-nxrealwindowprop set property NX_REAL_WINDOW for each X11 window inside nxagent\n"); + ErrorF("-reportwids report externally exposed X11 window IDs to the session log\n"); + ErrorF("-reportprivatewids report internal X11 window ID to the session log\n"); #ifdef RENDER ErrorF("-norender disable the use of the render extension\n"); ErrorF("-nocomposite disable the use of the composite extension (default)\n"); @@ -2129,6 +2132,7 @@ void ddxUseMsg(void) ErrorF("-irlimit maximum image data rate to the encoder input in kB/s.\n"); ErrorF("-tile WxH maximum size of image tiles (minimum allowed: 32x32)\n"); ErrorF("-keystrokefile file file with keyboard shortcut definitions\n"); + ErrorF("-options file|string path to an options file or an option string (for testing/debugging)\n"); ErrorF("-verbose print more warning and error messages\n"); ErrorF("-D enable desktop mode\n"); ErrorF("-R enable rootless mode\n"); |