Skip to content

Instantly share code, notes, and snippets.

@qingy1337
Last active May 4, 2025 17:51
Show Gist options
  • Save qingy1337/1f0067966c2e437ce7a957923405801a to your computer and use it in GitHub Desktop.
Save qingy1337/1f0067966c2e437ce7a957923405801a to your computer and use it in GitHub Desktop.
Useful Commands for MacOS
Action Description Command
Turn On Accents Enable system accents defaults write -g ApplePressAndHoldEnabled -bool true
Turn Off Accents Disable system accents defaults write -g ApplePressAndHoldEnabled -bool false
Lock Dock Resizing Prevent dock size changes defaults write com.apple.Dock size-immutable -bool true; killall Dock
Unlock Dock Resizing Allow dock size changes defaults write com.apple.Dock size-immutable -bool false; killall Dock
Hide Folders/Files Hides them in Finder chflags hidden path/to/file/or/folder
Remove Caps Lock Delay No more delay when pressing caps lock hidutil property --set '{"CapsLockDelayOverride":0}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment