From be0671be6d59338c8e06fd22e8c0e73d8a7eabb2 Mon Sep 17 00:00:00 2001 From: LGUG2Z Date: Sat, 14 Dec 2024 22:52:32 -0800 Subject: [PATCH] fix(cli): correct copy-paste typo in autostart This commit corrects a typo which adds the "--masir" flag to the autostart shortcut when the user has passed the "--bar" flag to the enable-autostart command. fix #1178 --- 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 24c1db04..572a9f35 100644 --- a/komorebic/src/main.rs +++ b/komorebic/src/main.rs @@ -1534,7 +1534,7 @@ fn main() -> Result<()> { arguments.push_str(" --ahk"); } - if args.bar { + if args.masir { arguments.push_str(" --masir"); }