Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/desktop/src/main/lib/terminal/env.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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", () => {
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/main/lib/terminal/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ export function buildTerminalEnv(params: {
const terminalEnv: Record<string, string> = {
...baseEnv,
...shellEnv,
TERM_PROGRAM: "Superset",
TERM_PROGRAM: "kitty",
TERM_PROGRAM_VERSION: process.env.npm_package_version || "1.0.0",
COLORTERM: "truecolor",
COLORFGBG: colorFgBg,
Expand Down
Loading