File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/interceptors/terminal Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff 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+ }
You can’t perform that action at this time.
0 commit comments