Add support for COSMIC Terminal

This commit is contained in:
Dexter Reed 2024-07-26 09:56:56 +01:00
parent 905ee02247
commit 586917fb19
No known key found for this signature in database
GPG key ID: A107897231BE5854
2 changed files with 6 additions and 0 deletions

View file

@ -21,6 +21,7 @@ Terminals are searched in the following order:
- WezTerm
- Ptyxis
- XTerm
- COSMIC Terminal
## Can I use [some_terminal] instead?
Adding terminals is very simple, please open an Issue on GitHub and I will look into it.

View file

@ -279,6 +279,11 @@ pub fn get_supported_terminals() -> Vec<TerminalOption> {
executable_name: String::from("xterm"),
separator_arg: String::from("-e"),
},
TerminalOption {
name: String::from("COSMIC Terminal"),
executable_name: String::from("cosmic-term"),
separator_arg: String::from("-e"),
},
]
}