diff --git a/apps/desktop/src/main/lib/terminal/env.test.ts b/apps/desktop/src/main/lib/terminal/env.test.ts index a0c661abe2c..98e7fd7386f 100644 --- a/apps/desktop/src/main/lib/terminal/env.test.ts +++ b/apps/desktop/src/main/lib/terminal/env.test.ts @@ -658,9 +658,9 @@ describe("env", () => { }); describe("terminal metadata", () => { - it("should set TERM_PROGRAM to Superset", () => { + it("should set TERM_PROGRAM to kitty", () => { const result = buildTerminalEnv(baseParams); - expect(result.TERM_PROGRAM).toBe("Superset"); + expect(result.TERM_PROGRAM).toBe("kitty"); }); it("should set COLORTERM to truecolor", () => { diff --git a/apps/desktop/src/main/lib/terminal/env.ts b/apps/desktop/src/main/lib/terminal/env.ts index 883582ba935..302d2725f32 100644 --- a/apps/desktop/src/main/lib/terminal/env.ts +++ b/apps/desktop/src/main/lib/terminal/env.ts @@ -464,7 +464,7 @@ export function buildTerminalEnv(params: { const terminalEnv: Record = { ...baseEnv, ...shellEnv, - TERM_PROGRAM: "Superset", + TERM_PROGRAM: "kitty", TERM_PROGRAM_VERSION: process.env.npm_package_version || "1.0.0", COLORTERM: "truecolor", COLORFGBG: colorFgBg,