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 d12cde7 commit 6bc69b1Copy full SHA for 6bc69b1
Plugins/Flow.Launcher.Plugin.ProcessKiller/ProcessHelper.cs
@@ -31,7 +31,10 @@ internal class ProcessHelper
31
"explorer"
32
};
33
34
- private bool IsSystemProcess(Process p) => _systemProcessList.Contains(p.ProcessName.ToLower());
+ private const string FlowLauncherProcessName = "Flow.Launcher";
35
+
36
+ private bool IsSystemProcess(Process p) => _systemProcessList.Contains(p.ProcessName.ToLower()) ||
37
+ string.Compare(p.ProcessName, FlowLauncherProcessName, StringComparison.OrdinalIgnoreCase) == 0;
38
39
/// <summary>
40
/// Returns a ProcessResult for evey running non-system process whose name matches the given searchTerm
0 commit comments