From 0ccb4a96da88300150411f82f401a149fc7056fa Mon Sep 17 00:00:00 2001 From: Observer KRypt0n_ Date: Wed, 2 Aug 2023 17:26:56 +0200 Subject: [PATCH] fix: updated game process name for "kill game process" feature --- src/ui/main/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/main/mod.rs b/src/ui/main/mod.rs index b3bd253..4c3134b 100644 --- a/src/ui/main/mod.rs +++ b/src/ui/main/mod.rs @@ -527,7 +527,7 @@ impl SimpleComponent for App { })); let result = std::process::Command::new("pkill") - .arg("GenshinImpact|YuanShen|unlocker\\.exe") + .arg("StarRail\\.exe") .spawn(); if let Err(err) = result {