From 894b5b6233cc0e12fb596a35958d4dae641de312 Mon Sep 17 00:00:00 2001 From: Serhiy Mytrovtsiy Date: Wed, 28 Jan 2026 19:12:39 +0100 Subject: [PATCH] feat: added -9 code to kill command when killing the process from the popup view (#2900) --- Kit/process.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kit/process.swift b/Kit/process.swift index 7ab90502..79a5273b 100644 --- a/Kit/process.swift +++ b/Kit/process.swift @@ -265,7 +265,7 @@ public class ProcessView: NSStackView { @objc private func kill() { if let pid = self.pid { - asyncShell("kill \(pid)") + _ = syncShell("kill -9 \(pid)") } } }