We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22148db commit d3c68deCopy full SHA for d3c68de
src/interceptors/fresh-terminal.ts
@@ -104,6 +104,7 @@ const getLinuxTerminalCommand = async (): Promise<SpawnArgs | null> => {
104
// If a specific term like this is installed, it's probably the preferred one
105
if (await commandExists('konsole')) return getKonsoleTerminalCommand();
106
if (await commandExists('xfce4-terminal')) return getXfceTerminalCommand();
107
+ if (await commandExists('rxvt')) return { command: 'rxvt' };
108
if (await commandExists('xterm')) return { command: 'xterm' };
109
110
return null;
0 commit comments