feat: add alacritty to the list of support terminals

This commit is contained in:
Martin Wimpress 2024-06-27 04:15:19 +01:00 committed by Martin Wimpress
parent 7e342008c7
commit 2b9af064e1
1 changed files with 2 additions and 0 deletions

View File

@ -32,6 +32,7 @@ class _ManagerState extends State<Manager> with PreferencesMixin {
final List<String> _sshVms = [];
String? _terminalEmulator;
final List<String> _supportedTerminalEmulators = [
'alacritty',
'cool-retro-term',
'gnome-terminal',
'guake',
@ -463,6 +464,7 @@ class _ManagerState extends State<Manager> with PreferencesMixin {
case 'mate-terminal':
sshArgs.insert(0, '--');
break;
case 'alacritty':
case 'xterm':
case 'lxterm':
case 'uxterm':