Skip to content

Commit 189f35a

Browse files
Poyoman39pimterry
authored andcommitted
Add brand new "gnome console" terminal
This is the new default terminal for gnome users
1 parent cc96a7b commit 189f35a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/interceptors/terminal/fresh-terminal-interceptor.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ const getLinuxTerminalCommand = async (): Promise<SpawnArgs | null> => {
9191
// If a specific term like this is installed, it's probably the preferred one
9292
if (await commandExists('konsole')) return getKonsoleTerminalCommand();
9393
if (await commandExists('xfce4-terminal')) return getXfceTerminalCommand();
94+
if (await commandExists('kgx')) return { command: 'kgx' };
9495
if (await commandExists('kitty')) return { command: 'kitty' };
9596
if (await commandExists('urxvt')) return { command: 'urxvt' };
9697
if (await commandExists('rxvt')) return { command: 'rxvt' };
@@ -277,4 +278,4 @@ export class FreshTerminalInterceptor implements Interceptor {
277278

278279
await resetShellStartupScripts();
279280
}
280-
}
281+
}

0 commit comments

Comments
 (0)