We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
kitty
1 parent 19a51f2 commit bac21c5Copy full SHA for bac21c5
3 files changed
src/Models/ShellOrTerminal.cs
@@ -42,7 +42,8 @@ static ShellOrTerminal()
42
new ShellOrTerminal("mac-terminal", "Terminal", ""),
43
new ShellOrTerminal("iterm2", "iTerm", ""),
44
new ShellOrTerminal("warp", "Warp", ""),
45
- new ShellOrTerminal("ghostty", "Ghostty", "")
+ new ShellOrTerminal("ghostty", "Ghostty", ""),
46
+ new ShellOrTerminal("kitty", "kitty", "")
47
};
48
}
49
else
@@ -58,6 +59,7 @@ static ShellOrTerminal()
58
59
new ShellOrTerminal("foot", "Foot", "foot"),
60
new ShellOrTerminal("wezterm", "WezTerm", "wezterm"),
61
new ShellOrTerminal("ptyxis", "Ptyxis", "ptyxis"),
62
+ new ShellOrTerminal("kitty", "kitty", "kitty"),
63
new ShellOrTerminal("custom", "Custom", ""),
64
65
src/Native/MacOS.cs
@@ -59,6 +59,8 @@ public string FindTerminal(Models.ShellOrTerminal shell)
return "Warp";
case "ghostty":
return "Ghostty";
+ case "kitty":
+ return "kitty";
66
return string.Empty;
src/Resources/Images/ShellIcons/kitty.png
763 Bytes
0 commit comments