Add macOS defaults for focus ring and scrolling - #305
Conversation
Added commands to disable the over-the-top focus ring animation, commented out command to disable smooth scrolling, and increased window resize speed for Cocoa applications. These changes are applied to both `.chezmoiscripts/run_once_macos-defaults.sh.tmpl` (with logging) and `dot_local/bin/macos_defaults.sh`. Co-authored-by: arran4 <111667+arran4@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
There was a problem hiding this comment.
Code Review
This pull request adds macOS system defaults configurations to disable the focus ring animation, disable smooth scrolling (commented out), and increase window resize speed for Cocoa applications in both .chezmoiscripts/run_once_macos-defaults.sh.tmpl and dot_local/bin/macos_defaults.sh. The review feedback recommends documenting that these NSGlobalDomain changes require a logout or system restart to take full effect, and suggests replacing curly apostrophes with straight ASCII apostrophes in comments to avoid potential encoding issues.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| # Disable the over-the-top focus ring animation | ||
| defaults write NSGlobalDomain NSUseAnimatedFocusRing -bool false |
There was a problem hiding this comment.
Changes to NSGlobalDomain (such as NSUseAnimatedFocusRing and NSWindowResizeTime) apply system-wide and generally require a logout/login or system restart to take full effect across all applications, rather than just restarting Dock, Finder, and SystemUIServer. It would be helpful to document this in the comments so users know why the changes might not be immediately visible.
# Disable the over-the-top focus ring animation (requires logout/restart to apply system-wide)
defaults write NSGlobalDomain NSUseAnimatedFocusRing -bool false
There was a problem hiding this comment.
Changes to
NSGlobalDomain(such asNSUseAnimatedFocusRingandNSWindowResizeTime) apply system-wide and generally require a logout/login or system restart to take full effect across all applications, rather than just restartingDock,Finder, andSystemUIServer. It would be helpful to document this in the comments so users know why the changes might not be immediately visible.# Disable the over-the-top focus ring animation (requires logout/restart to apply system-wide) defaults write NSGlobalDomain NSUseAnimatedFocusRing -bool false
There was a problem hiding this comment.
Added note about logout/restart requirement to the comment.
- Updated comments for `NSUseAnimatedFocusRing` and `NSWindowResizeTime` to note that they require a logout/restart to apply system-wide. - Replaced a curly apostrophe with a straight ASCII apostrophe in the smooth scrolling comment to avoid potential encoding issues. - Applied these changes to both `.chezmoiscripts/run_once_macos-defaults.sh.tmpl` and `dot_local/bin/macos_defaults.sh`. Co-authored-by: arran4 <111667+arran4@users.noreply.github.com>
Added macOS default commands to disable focus ring animation, comment for smooth scrolling, and increase window resize speed based on user request.
PR created automatically by Jules for task 5773033735420095495 started by @arran4