From e969011b879c0cfc5fc1012d4c477e32d68da378 Mon Sep 17 00:00:00 2001 From: Daneel Date: Sun, 1 Mar 2026 10:25:11 +0100 Subject: [PATCH] config: always enable macOS accessibility on darwin --- config.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config.el b/config.el index 9404a6a..a8ff702 100644 --- a/config.el +++ b/config.el @@ -2142,3 +2142,9 @@ Formats matching what org-caldav/ox-icalendar export correctly: ;; gls (setq insert-directory-program "gls") + +;; Always enable macOS accessibility (VoiceOver + Zoom cursor tracking). +;; Override auto-detection so the AX tree is available from startup +;; regardless of whether an AT is currently active. +(when (eq system-type 'darwin) + (setq ns-accessibility-enabled t))