From 4b68e3f05173ee9f689b769e77877a8a9bcce2d1 Mon Sep 17 00:00:00 2001 From: John Ogle Date: Thu, 16 Oct 2025 15:29:41 -0700 Subject: [PATCH] [darwin] Configure AutoRaise Add delays. This works way better with accordion views where the cursor is often hovering right around window boundaries --- home/home-darwin-work.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/home/home-darwin-work.nix b/home/home-darwin-work.nix index 6ca883b..95aed6f 100644 --- a/home/home-darwin-work.nix +++ b/home/home-darwin-work.nix @@ -23,7 +23,12 @@ in launchd.agents.autoraise = { enable = true; config = { - ProgramArguments = [ "${pkgs.autoraise}/bin/AutoRaise" ]; + ProgramArguments = [ + "${pkgs.autoraise}/bin/AutoRaise" + "-pollMillis" "50" + "-delay" "2" + "-focusDelay" "2" + ]; RunAtLoad = true; KeepAlive = true; };