diff options
| author | Luke Hoersten <[email protected]> | 2026-05-25 12:12:29 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2026-05-25 12:12:29 -0500 |
| commit | 5bed487db4f6d2942a7cf63b2fa7f0ef6eeb0650 (patch) | |
| tree | c223d185eae2637b3270b3374f2c2e53a55a6282 | |
| parent | fc5965c1bf30c4ed9ebf216e752d27413aa61104 (diff) | |
| parent | 7ec2fcfaebd5cf9c464655534bcc5adce71906c5 (diff) | |
Merge origin/main: resolve claude-code-context conflict in favor of MELPA install
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | init.el | 6 |
2 files changed, 8 insertions, 0 deletions
@@ -15,3 +15,5 @@ claude-code-context.json /agent/ /tramp /tree-sitter/ +/.chatgpt-shell.el +/.time-zones.el @@ -342,6 +342,12 @@ (require 'auto-dark) (setq auto-dark-allow-osascript t auto-dark-themes '((solarized-dark) (solarized-light))) +;; Trigger the macOS Automation permission prompt for System Events when +;; launched from Spotlight. ns-do-applescript fails silently without the +;; prompt, but shelling to osascript surfaces TCC. +(when (eq system-type 'darwin) + (call-process "osascript" nil nil nil + "-e" "tell application \"System Events\" to tell appearance preferences to return dark mode")) (auto-dark-mode 1) |
