DEV Community

Heitor Ramon Ribeiro
Heitor Ramon Ribeiro

Posted on

The initial setup on a fresh OS

After finishing your MacOS initial setup, you will face that default screen with many default Apple apps on the docker, and nothing configured.

Now let's configure the MacOS with the basic settings.

Settings

These are configurations done in the MacOs settings.

Dock & Menu Bar

  • Remove most applications from Dock
  • Automatic Hide
  • Medium Dock
  • Gennie Effect (Gives me that nostalgic feeling)
  • "Double-click a window's title bar to" zoom
  • Minimize windows into application icon
  • Animate opening applications
  • "Show recent applications in Dock" off
  • "Show indicators for open applications" on
  • "Automatically hide and show the menu bar on desktop" off
  • "Automatically hide and show the menu bar in full screen" on

Image description

Display

  • Nightshift Image description

Security

  • Touch ID
  • FileVault Enabled

Siri

  • Disable

Keyboard

  • Text
    • Disable "Add full stop with double-space"
    • Disable "Use smart quotes and dashes"
    • Use " for double quotes
    • use ' for single quotes

Image description

Mission Control

  • Hot Corners: disable all Image description

Finder

  • Create a Developer folder inside your home folder ~ (It adds a custom icon to the folder)
  • Sidebar:

    • activate all Favorites
    • move Library to Favorites
    • Add Drive and Dropbox to Favorites
    • Add Developer folder to Favorites Image description
  • Hide all Tags

    Image description

  • Show all Filename Extensions

  • Remove Items from Bin after 30 Days

Image description

Terminal Settings

(Affects Finder and other Applications)

  • Show Hidden Files
defaults write com.apple.finder AppleShowAllFiles YES; killall Finder;
Enter fullscreen mode Exit fullscreen mode
  • Clear .DS_Store files
sudo find / -name .DS_Store -delete; killall Finder
Enter fullscreen mode Exit fullscreen mode
  • Take screenshots as jpg (usually smaller size) and not png
defaults write com.apple.screencapture type jpg; killall Finder;
Enter fullscreen mode Exit fullscreen mode
  • Show Library folder
chflags nohidden ~/Library; killall Finder;
Enter fullscreen mode Exit fullscreen mode
  • Show path bar
defaults write com.apple.finder ShowPathbar -bool true; killall Finder;
Enter fullscreen mode Exit fullscreen mode
  • Show status bar
defaults write com.apple.finder ShowStatusBar -bool true; killall Finder;
Enter fullscreen mode Exit fullscreen mode

Top comments (0)