Add support for COSMIC Terminal
This commit is contained in:
parent
905ee02247
commit
586917fb19
2 changed files with 6 additions and 0 deletions
|
@ -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.
|
||||
|
|
|
@ -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"),
|
||||
},
|
||||
]
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue