This commit is contained in:
crschnick
2025-06-04 15:36:12 +00:00
parent a481ffd42d
commit e46547b2bf
2 changed files with 2 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ public interface ExternalApplicationType extends PrefsValue {
if (args) {
builder.add(0, "--args");
}
builder.addQuoted(getApplicationName());
builder.addQuoted(0, getApplicationName());
builder.add(0, "open", "-a");
return LocalShell.getShell().command(builder);
}

View File

@@ -38,6 +38,7 @@ public interface ExternalVncClient {
l.add(TigerVncClient.Linux.class);
}
case OsType.MacOs macOs -> {
l.add(ScreenSharingVncClient.class);
l.add(RealVncClient.MacOs.class);
l.add(TigerVncClient.MacOs.class);
}