Skip to content

Commit 6b31c32

Browse files
committed
Add qterminal and deepin-terminal support
1 parent 34eeb8e commit 6b31c32

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/supported_terminals.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ static SUPPORTED_TERMINALS: LazyLock<Vec<Terminal>> = LazyLock::new(|| {
3535
("COSMIC Terminal", "cosmic-term", "-e"),
3636
("Ghostty", "ghostty", "-e"),
3737
("Terminator", "terminator", "-x"),
38+
("QTerminal", "qterminal", "-e"),
39+
("Deepin Terminal", "deepin-terminal", "-e"),
3840
]
3941
.iter()
4042
.map(|(name, program, separator_arg)| Terminal {
@@ -193,7 +195,7 @@ impl TerminalRepository {
193195
);
194196
command.stdout = FdMode::Pipe;
195197
command.stderr = FdMode::Pipe;
196-
198+
197199
let output = self
198200
.imp()
199201
.command_runner

0 commit comments

Comments
 (0)