Mac, MacOS, and OS/X
2 minute read
Here’s what I have for Apple Macintosh operating systems, aka Mac, MacOS, OS/X, and so on.
It’s a bit of a grab bag at the moment. I’ll add additional material over time.
Finder
Hidden files
Finder hides system files (and folders) by default.
To view hidden files for the current Finder session, press Shift + Command + .
(period).
This is a toggle setting. Press the key to hide the files.
To always display hidden files, start terminal and then run:
$ defaults write com.apple.Finder AppleShowAllFiles true`
To hide system files by default, run the this command with false
as the final parameter.
You need to restart all Finder instances to pick up changes. To do so quickly, run:
$ killall Finder
Homebrew
Homebrew is a popular package manager for macOS, generally run from the command line (Terminal).
Set up instructions are on the Homebrew site (brew.sh).
To keep everything up-to-date:
brew update
brew outdated
brew upgrade
For best results, consider running brew doctor
twice before starting this process. (There are times when it seems to help.)
To learn more, see the brew FAQs (brew.sh).
Safari
Enable developer tools
Safari hides View Source and Developer tools by default.
To show them:
-
Start Safari and then use the menu to select Safari > Settings.
-
From the Advanced tab of the Settings dialog, place a checkmark next to Show features for web developers
When you do this:
- a Develop tab appears in the Settings dialog
- a Develop menu appears in the app menu
The Developer tools can help troubleshoot website issues.
To open the Console, for example, use the Safari menu to select Develop > Show JavaScript Console.
Vital statistics
- 20 Jun 2024: Minor edits
- 9 May 2024: First post