mirror of https://github.com/cirruslabs/tart.git
tart run: set "prohibited" activation policy when --no-graphics is set (#939)
This commit is contained in:
parent
9c879b3f55
commit
c0443060cf
|
|
@ -472,8 +472,10 @@ struct Run: AsyncParsableCommand {
|
|||
|
||||
let useVNCWithoutGraphics = (vnc || vncExperimental) && !graphics
|
||||
if noGraphics || useVNCWithoutGraphics {
|
||||
// enter the main even loop, without bringing up any UI,
|
||||
// and just wait for the VM to exit.
|
||||
// Enter the main event loop without bringing up any UI,
|
||||
// waiting for the VM to exit.
|
||||
NSApplication.shared.setActivationPolicy(.prohibited)
|
||||
|
||||
NSApplication.shared.run()
|
||||
} else {
|
||||
runUI(suspendable, captureSystemKeys)
|
||||
|
|
|
|||
Loading…
Reference in New Issue