Add more terminal support

This commit is contained in:
crschnick 2023-10-25 14:21:50 +00:00
parent f800ecd46d
commit 119ebcbf6c
2 changed files with 43 additions and 0 deletions

View file

@ -413,6 +413,46 @@ public interface ExternalTerminalType extends PrefsChoiceValue {
} }
}; };
ExternalTerminalType XTERM = new SimplePathType("app.xterm", "xterm") {
@Override
protected CommandBuilder toCommand(String name, String file) {
return CommandBuilder.of().add("-title").addQuoted(name).add("-e").addQuoted(file);
}
@Override
public boolean isSelectable() {
return OsType.getLocal().equals(OsType.LINUX);
}
};
ExternalTerminalType DEEPIN_TERMINAL = new SimplePathType("app.deepinTerminal", "deepin-terminal") {
@Override
protected CommandBuilder toCommand(String name, String file) {
return CommandBuilder.of().add("-C").addQuoted(file);
}
@Override
public boolean isSelectable() {
return OsType.getLocal().equals(OsType.LINUX);
}
};
ExternalTerminalType Q_TERMINAL = new SimplePathType("app.qTerminal", "qterminal") {
@Override
protected CommandBuilder toCommand(String name, String file) {
return CommandBuilder.of().add("-e").addQuoted(file);
}
@Override
public boolean isSelectable() {
return OsType.getLocal().equals(OsType.LINUX);
}
};
ExternalTerminalType MACOS_TERMINAL = new MacOsTerminalType(); ExternalTerminalType MACOS_TERMINAL = new MacOsTerminalType();
ExternalTerminalType ITERM2 = new ITerm2Type(); ExternalTerminalType ITERM2 = new ITerm2Type();

View file

@ -55,6 +55,9 @@ coolRetroTerm=Cool Retro Term
guake=Guake guake=Guake
alacritty=Alacritty alacritty=Alacritty
tilda=Tilda tilda=Tilda
xterm=XTerm
deepinTerminal=Deepin Terminal
qterminal=QTerminal
recent=Recent recent=Recent
hostFeatureUnsupported=$FEATURE$ is not installed on the host hostFeatureUnsupported=$FEATURE$ is not installed on the host
missingStore=$NAME$ does not exist missingStore=$NAME$ does not exist