Skip to content

Mac Notes

HongHao Zhang edited this page May 28, 2024 · 2 revisions

How to Disable the Stupid Caps Lock Indicator on macOS Sonoma

👎

CleanShot 2024-05-27 at 19 34 03@2x

Option 1:

Just run:

sudo defaults write /Library/Preferences/FeatureFlags/Domain/UIKit.plist redesigned_text_cursor -dict-add Enabled -bool NO

From: https://stackoverflow.com/a/77296786/3164091

Option 2:

  1. Make folder if needed:
sudo mkdir -p /Library/Preferences/FeatureFlags/Domain
  1. Set the plist to disable the stupid redesigned text cursor:
sudo /usr/libexec/PlistBuddy -c "Add 'redesigned_text_cursor:Enabled' bool false" /Library/Preferences/FeatureFlags/Domain/UIKit.plist

From: https://www.macobserver.com/tips/how-to/disable-caps-lock-indicator-sonoma/

Clone this wiki locally