diff --git a/komorebic/src/main.rs b/komorebic/src/main.rs index 495157cd0..eb46aa6ae 100644 --- a/komorebic/src/main.rs +++ b/komorebic/src/main.rs @@ -718,6 +718,9 @@ struct EnableAutostart { /// Path to a static configuration JSON file #[clap(action, short, long)] config: String, + /// Enable komorebi's custom focus-follows-mouse implementation + #[clap(action, short, long = "ffm")] + ffm: bool, /// Enable autostart of whkd #[clap(action, long)] whkd: bool, @@ -1173,6 +1176,10 @@ fn main() -> Result<()> { let mut arguments = format!("start --config {}", args.config); + if args.ffm { + arguments.push_str(" --ffm"); + } + if args.whkd { arguments.push_str(" --whkd"); } else if args.ahk {