feat: added -9 code to kill command when killing the process from the popup view (#2900)

This commit is contained in:
Serhiy Mytrovtsiy
2026-01-28 19:12:39 +01:00
parent eb5fb353d9
commit 894b5b6233

View File

@@ -265,7 +265,7 @@ public class ProcessView: NSStackView {
@objc private func kill() {
if let pid = self.pid {
asyncShell("kill \(pid)")
_ = syncShell("kill -9 \(pid)")
}
}
}