Mac Setup for Designers: Settings That Matter
Design work puts different demands on a Mac: what you see has to be accurate, files arrive in a hundred formats, and you screenshot constantly. These are the settings that matter for that, starting with the two that quietly change every colour on your screen.
Turn off the things that shift your colours
Two macOS features adjust what your display shows based on the room you are in. Both are pleasant for reading and both are wrong when you are matching colour.
- True Tone — System Settings → Displays. It adapts the white point to ambient light, so the same file looks different at 9am and 6pm.
- Night Shift — Displays → Night Shift. Warms the display on a schedule. Fine in the evening, ruinous mid-edit.
- Automatically adjust brightness — same screen. Useful for battery, unhelpful for consistency.
You do not have to live without them. Turn them off while working and back on afterwards, or set Night Shift's schedule to start after you finish.
Pick a colour profile deliberately
In System Settings → Displays → Colour Profile, modern Macs offer presets including sRGB, Display P3 and several reference modes on Pro displays. The right choice depends on the output: sRGB for web work, P3 if you are working in a wide-gamut pipeline end to end, and a photography preset if you are printing.
The important part is choosing rather than leaving it. A machine set to a wide-gamut profile makes web work look more saturated on your screen than it will in anyone's browser, which is how designs ship looking flat.
Screenshots that are ready to use
Designers take more screenshots than anyone, and macOS adds a large soft shadow to window captures that ruins alignment in any document.
# no shadow, save to a folder, keep PNG for interface work
defaults write com.apple.screencapture disable-shadow -bool true
mkdir -p ~/Pictures/Screenshots
defaults write com.apple.screencapture location ~/Pictures/Screenshots
defaults write com.apple.screencapture show-thumbnail -bool false
killall SystemUIServer
# undo any of them with defaults delete on the same key
Keep the format as PNG. JPG compression makes small text and flat colour look dirty, which is precisely what you are trying to show someone.
Finder as an asset browser
- Gallery view (Command-4) with the preview pane shows large thumbnails and full metadata: dimensions, colour profile, resolution, creation date. For a folder of exports it beats opening files one at a time.
- Quick Look — select any file and press Space. It renders images, PDFs, video, fonts and most design formats without launching the app.
- Show all extensions — Finder → Settings → Advanced. Distinguishing a PNG from a JPG at a glance matters when you are handing off.
- Column view (Command-3) — the fastest way to navigate a deep asset library, with a preview in the last column.
Fonts, and the folder to know about
Font Book installs to ~/Library/Fonts for you alone or /Library/Fonts for everyone. If a font behaves oddly in one app only, the usual culprit is a duplicate: Font Book's Edit → Look for Enabled Duplicates resolves it. Keep client fonts in a disabled collection rather than installed, so your font menu stays navigable.
Reduce motion, keep the precision
macOS animates window opening, Spaces switching and Mission Control. On a long day of detailed work those transitions cost time and attention rather than adding polish.
# near-instant window resizing
defaults write NSGlobalDomain NSWindowResizeTime -float 0.001
# no window open and close animations
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false
# undo both
defaults delete NSGlobalDomain NSWindowResizeTime
defaults delete NSGlobalDomain NSAutomaticWindowAnimationsEnabled
There is also Accessibility → Display → Reduce motion, which replaces Spaces sliding with a cross-fade. Worth trying for a day: it makes a multi-Space workflow feel considerably faster, and it helps if full-screen switching ever makes you queasy.
A tidy screen for handoff
Before recording a walkthrough or sharing your screen, two things make the difference between polished and chaotic: hiding desktop icons, and hiding every other app with Option-Command-H. The desktop is one preference:
# hide every desktop icon (files are untouched)
defaults write com.apple.finder CreateDesktop -bool false && killall Finder
# bring them back
defaults delete com.apple.finder CreateDesktop && killall Finder
Mainspring turns the screenshot, desktop and Finder settings above into one-click toggles, plus a tidy-windows action that clears your screen before a share and restores it after.
Try Mainspring free →Signed & notarized by Apple · 1-day free trial · $29 once