Skip to content

Commit e49e781

Browse files
authored
feat(app): add Warp to the open menu (#15368)
1 parent 78cea89 commit e49e781

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

packages/app/src/components/session/session-header.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ const OPEN_APPS = [
3535
"terminal",
3636
"iterm2",
3737
"ghostty",
38+
"warp",
3839
"xcode",
3940
"android-studio",
4041
"powershell",
@@ -63,6 +64,7 @@ const MAC_APPS = [
6364
{ id: "terminal", label: "Terminal", icon: "terminal", openWith: "Terminal" },
6465
{ id: "iterm2", label: "iTerm2", icon: "iterm2", openWith: "iTerm" },
6566
{ id: "ghostty", label: "Ghostty", icon: "ghostty", openWith: "Ghostty" },
67+
{ id: "warp", label: "Warp", icon: "warp", openWith: "Warp" },
6668
{ id: "xcode", label: "Xcode", icon: "xcode", openWith: "Xcode" },
6769
{
6870
id: "android-studio",
764 KB
Loading

packages/ui/src/components/app-icon.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import powershell from "../assets/icons/app/powershell.svg"
1313
import terminal from "../assets/icons/app/terminal.png"
1414
import textmate from "../assets/icons/app/textmate.png"
1515
import vscode from "../assets/icons/app/vscode.svg"
16+
import warp from "../assets/icons/app/warp.png"
1617
import xcode from "../assets/icons/app/xcode.png"
1718
import zed from "../assets/icons/app/zed.svg"
1819
import zedDark from "../assets/icons/app/zed-dark.svg"
@@ -27,6 +28,7 @@ const icons = {
2728
terminal,
2829
iterm2,
2930
ghostty,
31+
warp,
3032
xcode,
3133
"android-studio": androidStudio,
3234
antigravity,

packages/ui/src/components/app-icons/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export const iconNames = [
99
"terminal",
1010
"iterm2",
1111
"ghostty",
12+
"warp",
1213
"xcode",
1314
"android-studio",
1415
"antigravity",

0 commit comments

Comments
 (0)