mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08:00
feature: supports Warp
terminal on macOS (#829)
Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
parent
50892f7401
commit
1862428a0f
3 changed files with 3 additions and 0 deletions
|
@ -41,6 +41,7 @@ namespace SourceGit.Models
|
|||
{
|
||||
new ShellOrTerminal("mac-terminal", "Terminal", ""),
|
||||
new ShellOrTerminal("iterm2", "iTerm", ""),
|
||||
new ShellOrTerminal("warp", "Warp", ""),
|
||||
};
|
||||
}
|
||||
else
|
||||
|
|
|
@ -36,6 +36,8 @@ namespace SourceGit.Native
|
|||
return "Terminal";
|
||||
case "iterm2":
|
||||
return "iTerm";
|
||||
case "warp":
|
||||
return "Warp";
|
||||
}
|
||||
|
||||
return string.Empty;
|
||||
|
|
BIN
src/Resources/Images/ShellIcons/warp.png
Normal file
BIN
src/Resources/Images/ShellIcons/warp.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.7 KiB |
Loading…
Reference in a new issue