diff options
| author | Simon Rettberg | 2025-04-30 12:08:00 +0200 |
|---|---|---|
| committer | Simon Rettberg | 2025-04-30 12:08:00 +0200 |
| commit | 45c9377a1da645ad40d9ac1458e58fb6e4b10d4c (patch) | |
| tree | e2379ebed4b64405b38f899618bc8f42c7ce6219 | |
| parent | [vmware-common] Handle Windows 11 for hwlimits, log if limiting (diff) | |
| download | mltk-45c9377a1da645ad40d9ac1458e58fb6e4b10d4c.tar.gz mltk-45c9377a1da645ad40d9ac1458e58fb6e4b10d4c.tar.xz mltk-45c9377a1da645ad40d9ac1458e58fb6e4b10d4c.zip | |
[qemu] Run virt-viewer in kiosk mode to hide the toolbar
| -rw-r--r-- | core/modules/qemu/runvirt-plugin-qemu/src/main/java/org/openslx/runvirt/viewer/ViewerVirtViewer.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules/qemu/runvirt-plugin-qemu/src/main/java/org/openslx/runvirt/viewer/ViewerVirtViewer.java b/core/modules/qemu/runvirt-plugin-qemu/src/main/java/org/openslx/runvirt/viewer/ViewerVirtViewer.java index 876f5f2e..0f629d5c 100644 --- a/core/modules/qemu/runvirt-plugin-qemu/src/main/java/org/openslx/runvirt/viewer/ViewerVirtViewer.java +++ b/core/modules/qemu/runvirt-plugin-qemu/src/main/java/org/openslx/runvirt/viewer/ViewerVirtViewer.java @@ -100,7 +100,7 @@ public class ViewerVirtViewer extends Viewer if ( !this.usbAutoconnect.isEmpty() ) { args.add( "--spice-usbredir-redirect-on-connect=" + Strings.join( this.usbAutoconnect, '|' ) ); } - args.addAll( Arrays.asList( new String[] { "--full-screen", "--wait", + args.addAll( Arrays.asList( new String[] { "--kiosk", "--full-screen", "--wait", "--attach", "--connect=" + connectionUri, "--uuid", "--", machineUuid } ) ); // execute viewer process with arguments: |
