MainspringGuides › Free vs paid
macOS Guide

Free vs Paid Mac Tweak Apps: What You Get

Updated August 2026 · 3 min read

There are good free tools for changing hidden macOS settings, and there are paid ones. The honest answer is that the difference is not coverage, because they all write the same preference values. The difference is in four other things, and whether those matter depends entirely on how you work.

Everything writes the same values

Free or paid, every tool in this category ends up calling the same system preference APIs that defaults uses. You can verify this yourself:

# read a value before you change it in any app
defaults read com.apple.dock autohide-delay

# change it in the tool, then read it again
defaults read com.apple.dock autohide-delay

So nobody has secret settings. What you are paying for, if you pay, is one or more of the following four.

1. Explanation

Free tools list settings by name: "Disable window animations", "Show Library folder". That is enough when you already know what you want. It is not enough when you are browsing, because the label tells you the mechanism, not the consequence. Explanation is genuinely expensive to produce and it is the clearest difference between the tiers.

2. Reversibility

This is the one that costs people time. macOS distinguishes between a preference set to false and one that was never set at all, and for some settings those behave differently:

# make a change
defaults write com.apple.finder AppleShowAllFiles -bool true && killall Finder

# the wrong undo: adds a second change
defaults write com.apple.finder AppleShowAllFiles -bool false && killall Finder

# the right undo: removes yours entirely
defaults delete com.apple.finder AppleShowAllFiles && killall Finder

A tool that only writes values cannot restore the state your Mac shipped with. Ask this question of anything you install, free or paid.

3. Maintenance

Every September macOS changes, some keys stop working and others appear. Free tools maintained by one person as a side project sometimes keep up and sometimes go quiet for a year. That is not a criticism; it is the economics. A paid tool has a reason to test against the new release, and that is worth something the first time an OS update breaks a setting you rely on.

4. Grouping

Free tools are lists of switches. If you set up Macs more than once, applying a known set of changes together and reverting them together is the difference between ten minutes and an afternoon of remembering.

When you should install nothing

If you want two or three specific changes and you have a note of the commands, use Terminal. It is free, it is already installed, and you will understand exactly what happened:

# show hidden files
defaults write com.apple.finder AppleShowAllFiles -bool true && killall Finder

# faster key repeat
defaults write NSGlobalDomain KeyRepeat -int 2

# no screenshot shadow
defaults write com.apple.screencapture disable-shadow -bool true && killall SystemUIServer

Also worth saying: for showing hidden files there is a built-in shortcut, Command-Shift-Period, and no tool of any kind is needed.

Watch out for the third category

There is a third group that markets itself alongside these and is not the same thing: cleaners and optimisers. They promise speed, memory freeing and junk removal. Almost none of that survives contact with how macOS actually works — it manages memory and caches on its own, and "freeing" memory usually means throwing away caches the system will rebuild more slowly.

Some of these apps also use aggressive scanning results to create alarm, which is a sales tactic rather than a diagnosis. A settings tool changes documented preference values you can verify with defaults read. That verifiability is the line between the two categories, and it is worth applying to anything you install.

How to decide

  1. Two or three changes, once. Terminal, or the built-in setting if one exists. Install nothing.
  2. A dozen changes and you know which. A free tool such as TinkerTool covers you.
  3. You are exploring, or you set up Macs regularly. Explanation, grouping and reliable undo are what you are buying, and they save real time.
  4. Anything promising to speed up or clean your Mac. Different category, and a much more sceptical read is warranted.
What $29 buys

Mainspring is the paid side of this comparison: 90+ settings explained in plain English, grouped into recipes, and reverted to their original state rather than overwritten. One payment, three Macs.

Try Mainspring free →

Signed & notarized by Apple · 1-day free trial · $29 once