From 383a6c8a052d045ad0292728ae04c6d4c458ce16 Mon Sep 17 00:00:00 2001 From: koraynilay Date: Wed, 26 Feb 2025 02:12:53 +0100 Subject: [PATCH] TerminalFont (Linux): support termite terminal (#1588) currently developed termite fork: https://github.com/aperezdc/termite --- src/detection/terminalfont/terminalfont_linux.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/detection/terminalfont/terminalfont_linux.c b/src/detection/terminalfont/terminalfont_linux.c index 497755bc5..ef762e961 100644 --- a/src/detection/terminalfont/terminalfont_linux.c +++ b/src/detection/terminalfont/terminalfont_linux.c @@ -475,4 +475,6 @@ void ffDetectTerminalFontPlatform(const FFTerminalResult* terminal, FFTerminalFo else if(ffStrbufStartsWithIgnCaseS(&terminal->processName, "Terminal")) detectHaikuTerminal(terminalFont); #endif + else if(ffStrbufStartsWithIgnCaseS(&terminal->processName, "termite")) + detectFromConfigFile("termite/config", "font =", terminalFont); }