diff --git a/src/focus.ts b/src/focus.ts index aea7889..a429c09 100644 --- a/src/focus.ts +++ b/src/focus.ts @@ -4,7 +4,7 @@ const MAC_TERMINAL_APP_NAMES = new Set([ "terminal", "iterm2", "ghostty", - "wezterm", + "wezterm-gui", "alacritty", "kitty", "hyper", @@ -159,6 +159,8 @@ function getExpectedMacTerminalAppNames(env: NodeJS.ProcessEnv): Set { expected.add("code insiders") } else if (termProgram === "warpterminal") { expected.add("warp") + } else if (termProgram === "wezterm") { + expected.add("wezterm-gui") } else if (termProgram.length > 0) { expected.add(termProgram) }