feat: add alacritty to the list of support terminals
This commit is contained in:
parent
e8f96ed832
commit
19be417f57
|
|
@ -32,6 +32,7 @@ class _ManagerState extends State<Manager> with PreferencesMixin {
|
||||||
final List<String> _sshVms = [];
|
final List<String> _sshVms = [];
|
||||||
String? _terminalEmulator;
|
String? _terminalEmulator;
|
||||||
final List<String> _supportedTerminalEmulators = [
|
final List<String> _supportedTerminalEmulators = [
|
||||||
|
'alacritty',
|
||||||
'cool-retro-term',
|
'cool-retro-term',
|
||||||
'gnome-terminal',
|
'gnome-terminal',
|
||||||
'guake',
|
'guake',
|
||||||
|
|
@ -463,6 +464,7 @@ class _ManagerState extends State<Manager> with PreferencesMixin {
|
||||||
case 'mate-terminal':
|
case 'mate-terminal':
|
||||||
sshArgs.insert(0, '--');
|
sshArgs.insert(0, '--');
|
||||||
break;
|
break;
|
||||||
|
case 'alacritty':
|
||||||
case 'xterm':
|
case 'xterm':
|
||||||
case 'lxterm':
|
case 'lxterm':
|
||||||
case 'uxterm':
|
case 'uxterm':
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue