- Set Light mode
defaults write -g NSRequiresAquaSystemAppearance -bool Yes
- Log out and log back in
- Set Dark mode
- Open Screenshot.app
- Click "options" at the bottom of the screen
- Uncheck "Show Floating Thumbnail"
- For single-dropbox installations:
defaults write com.apple.screencapture location /Users/rsms/Dropbox/Screenshots
- For multi-dropbox installations:
defaults write com.apple.screencapture location "'/Users/rsms/Dropbox (Figma)/Screenshots'"
(double quotations needed fordefaults
to be able to parse the path string)
defaults write com.apple.PowerChime ChimeOnNoHardware -bool true && killall PowerChime
macOS 10.7 "Lion" changed the function of pressing and holding down a keyboard key. Instead of creating repeated keystrokes, a UI shows up to allow selecting alternate glyphs for a key. For example, press and hold "E" key would shown options for "e", "é", "ë", etc.
If you know how to use modifiers like ⌥ to input alternate glyphs, disabling this feature is probably a good idea. You can disable it per app like this:
defaults write com.sublimetext.3 ApplePressAndHoldEnabled -bool false
Or write it to the global defaults:
defaults write -g ApplePressAndHoldEnabled -bool false
You'll need to restart the app after wards, or sign out and back in again in the case of setting it globally.
If you have a cat, this is an important change to make in order to be able to get accurate "cat paw on keyboard" logs.
Many recently made MacBooks comes with macOS preset to a non-integer scaling factor. This causes issues if you are to do any design work on the computer (i.e. pixels won't be scaled evenly and things will look a little blurry in certain situations.) Fix this by:
- Apple ▶︎ Hold ALT key and select System Information... ▶︎ Hardware, Graphics/Displays ▶︎ Read the "Resolution" value of your display
- Apple ▶︎ System Preferences ▶︎ Dispays ▶︎ Displays tab ▶︎ Hold ALT key and click on "Resolution: Scaled" ▶︎ Hover over each "scale thumbnail" and look at the "Looks like XXxYY" number on the left. Pick the resolution that is either the same (1x) or half (2x) of the value you read in System Information.
SPAA is supposed to be "automatic" in macOS 12 but it is of course buggy. Apple removed the UI control for enabling/disabling it from System Preferences, but to remain sane and avoiding accidental property damage as a result from rage over poor text renering, go ahead and permanently disable it forever:
defaults -currentHost write -g AppleFontSmoothing -int 0
If you're restoring files from a Time Machine backup (ie by copying them to a new computer), they are likely to have extended ACL attributes (APFS only) which will prevent the restored files from being written to. Clearing xattrs, changing permissions in Finder or using regular chmod won't work. You'll have to erase the ACL entries. Example:
sudo chmod -R -N ~/something-you-copied
You may also want to clean up xattrs: (which AFAIK has no effect but can be annoying in ls
)
sudo xattr -dr com.apple.timemachine.private.directorycompletiondate ~/something-you-copied