diff options
author | Hugo Lundin <hugo@lundin.dev> | 2021-07-13 13:58:12 +0200 |
---|---|---|
committer | Hugo Lundin <hugo@lundin.dev> | 2021-07-16 16:09:45 +0200 |
commit | 0d43b96d1c2385fc8202462cf170d7ac7da5d2f7 (patch) | |
tree | 81c32fb5bf0c0e05918b32e53a36e58a03445ee0 /vncviewer/vncviewer.man | |
parent | c084e586927ff040014d6a8ea8c519b3a9a368d2 (diff) | |
download | tigervnc-0d43b96d1c2385fc8202462cf170d7ac7da5d2f7.tar.gz tigervnc-0d43b96d1c2385fc8202462cf170d7ac7da5d2f7.zip |
Add fullscreen mode for selected monitors
The user might not always want to use all monitors when in fullscreen
mode, but instead only a few. This commit adds support for configuring
selected monitors from command line, in the config file and graphically
in the options menu.
Because it might be hard to guarantee the consistency of monitor
identifiers coming from third-parties (for example FLTK), it has been
decided to use our own numerical identifier. This identifier is based on
the monitor's positions. The mapping between this identifier and the
indices used by FLTK is done by MonitorIndicesParameter.
Diffstat (limited to 'vncviewer/vncviewer.man')
-rw-r--r-- | vncviewer/vncviewer.man | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/vncviewer/vncviewer.man b/vncviewer/vncviewer.man index ff81b914..062bba9b 100644 --- a/vncviewer/vncviewer.man +++ b/vncviewer/vncviewer.man @@ -211,9 +211,17 @@ full-screen mode. Replaced by \fB-FullScreenMode=all\fP . .TP .B \-FullScreenMode \fImode\fP -Specify which monitors to use when in full screen. It should be either "Current" or "All". +Specify which monitors to use when in full screen. It should be either "Current", +"Selected" (specified by \fB-FullScreenSelectedMonitors\fP) or "All". The default is "Current". . +.TP +.B \-FullScreenSelectedMonitors \fImonitors\fP +This option specifies the monitors to use with \fB-FullScreenMode=selected\fP. +Monitors are ordered according to the system configuration from left to right, +and in case of a conflict, from top to bottom. So, for example, "1,2,3" means +that the first, second and third monitor counting from the left should be used. +The default is "1". . .TP .B \-FullscreenSystemKeys |