Merge pull request #112 from sungsphinx/cosmic-term

Add support for COSMIC Terminal
This commit is contained in:
Dv Lv 2024-07-26 18:57:21 +01:00 committed by GitHub
commit b333b555be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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"),
},
]
}