Skip to content

Commit d3c68de

Browse files
committed
Detect & use rxvt, if available
1 parent 22148db commit d3c68de

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/interceptors/fresh-terminal.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ const getLinuxTerminalCommand = async (): Promise<SpawnArgs | null> => {
104104
// If a specific term like this is installed, it's probably the preferred one
105105
if (await commandExists('konsole')) return getKonsoleTerminalCommand();
106106
if (await commandExists('xfce4-terminal')) return getXfceTerminalCommand();
107+
if (await commandExists('rxvt')) return { command: 'rxvt' };
107108
if (await commandExists('xterm')) return { command: 'xterm' };
108109

109110
return null;

0 commit comments

Comments
 (0)