Add support for explicit login shell open command [stage]

This commit is contained in:
crschnick 2023-06-21 20:16:00 +00:00
parent e96e1f0b41
commit af207615e6

View file

@ -115,6 +115,10 @@ public interface ShellDialect {
String getOpenCommand();
default String getLoginOpenCommand() {
return getOpenCommand();
}
String prepareTerminalInitFileOpenCommand(ShellDialect parentDialect, ShellControl sc, String file);
String runScript(ShellControl parent, String file);