Skip to content

Commit 03efbe5

Browse files
committed
TerminalShell (Windows): fix #488
1 parent 085479a commit 03efbe5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/detection/terminalshell/terminalshell_windows.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,8 @@ static uint32_t getShellInfo(const FFinstance* instance, FFTerminalShellResult*
142142
ffStrbufIgnCaseEqualS(&result->shellPrettyName, "guake-wrapped") ||
143143
ffStrbufIgnCaseEqualS(&result->shellPrettyName, "fastfetch") || //scoop warps the real binaries with a "shim" exe
144144
ffStrbufIgnCaseEqualS(&result->shellPrettyName, "flashfetch") ||
145-
ffStrbufContainIgnCaseS(&result->shellPrettyName, "debug")
145+
ffStrbufContainIgnCaseS(&result->shellPrettyName, "debug") ||
146+
ffStrbufStartsWithIgnCaseS(&result->shellPrettyName, "ConEmuC") // https://github.com/fastfetch-cli/fastfetch/issues/488#issuecomment-1619982014
146147
) {
147148
ffStrbufClear(&result->shellProcessName);
148149
ffStrbufClear(&result->shellPrettyName);

0 commit comments

Comments
 (0)