mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-20 11:44:59 +00:00
enhance: added support for kitty
terminal on macOS and Linux. (#1300)
This commit is contained in:
parent
19a51f227b
commit
bac21c5714
3 changed files with 5 additions and 1 deletions
|
@ -42,7 +42,8 @@ namespace SourceGit.Models
|
|||
new ShellOrTerminal("mac-terminal", "Terminal", ""),
|
||||
new ShellOrTerminal("iterm2", "iTerm", ""),
|
||||
new ShellOrTerminal("warp", "Warp", ""),
|
||||
new ShellOrTerminal("ghostty", "Ghostty", "")
|
||||
new ShellOrTerminal("ghostty", "Ghostty", ""),
|
||||
new ShellOrTerminal("kitty", "kitty", "")
|
||||
};
|
||||
}
|
||||
else
|
||||
|
@ -58,6 +59,7 @@ namespace SourceGit.Models
|
|||
new ShellOrTerminal("foot", "Foot", "foot"),
|
||||
new ShellOrTerminal("wezterm", "WezTerm", "wezterm"),
|
||||
new ShellOrTerminal("ptyxis", "Ptyxis", "ptyxis"),
|
||||
new ShellOrTerminal("kitty", "kitty", "kitty"),
|
||||
new ShellOrTerminal("custom", "Custom", ""),
|
||||
};
|
||||
}
|
||||
|
|
|
@ -59,6 +59,8 @@ namespace SourceGit.Native
|
|||
return "Warp";
|
||||
case "ghostty":
|
||||
return "Ghostty";
|
||||
case "kitty":
|
||||
return "kitty";
|
||||
}
|
||||
|
||||
return string.Empty;
|
||||
|
|
BIN
src/Resources/Images/ShellIcons/kitty.png
Normal file
BIN
src/Resources/Images/ShellIcons/kitty.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 763 B |
Loading…
Add table
Add a link
Reference in a new issue