From ee76d8bc1fb479f6d481805b48ec0ad7a47646c9 Mon Sep 17 00:00:00 2001 From: LGUG2Z Date: Wed, 29 May 2024 14:57:07 -0700 Subject: [PATCH] fix(cli): start ahk with arg list --- komorebic/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/komorebic/src/main.rs b/komorebic/src/main.rs index 70535e57..496a7f4f 100644 --- a/komorebic/src/main.rs +++ b/komorebic/src/main.rs @@ -1895,7 +1895,7 @@ if (!(Get-Process whkd -ErrorAction SilentlyContinue)) let script = format!( r#" - Start-Process '{ahk}' '{config}' -WindowStyle hidden + Start-Process '{ahk}' -ArgumentList '{config}' -WindowStyle hidden "#, config = config_ahk.display() );