Skip to content

macOS setup ITA

not edited this page Feb 15, 2024 · 13 revisions

Italiano non è il mio lingua prima. Il feedback è apprezzato. Also available in English

Ultimo aggiornamento per macOS Sonoma

Installa Command Line Tools

xcode-select --install

In alternativa, scarica gli strumenti qui, da Apple.

Impostazioni di sistema

  • Generali:
    • Lingua e zona:
      • Aggiunga lingue secondarie, per esempio. Inglese
      • Imposta la temperatura su celsius
      • Imposta la sistema di misura su metrico
    • Data e ora → Abilita "24 ore"
    • Condivisione → Modifica nome host locale a qualcosa divertimento
  • Aspetto:
    • Imposta lo aspetto su automatico
  • Centro di Controllo:
    • Imposta mostra e nascondi automaticamente la barra dei menu su sempre
  • Privacy e sicurezza:
    • Accesso completo al disco → Aggiunta Terminale.app
  • Scrivania e Dock:
    • Abilita "Mostra e nascondi automaticamente il Dock"
    • Disabilita "Mostra le app suggerite e quelle recenti nel Dock"
    • Disabilita "Riorganizza automaticamente gli spazi sulla base dell'utilizzo più recente"
  • Schermi:
    • Night Shift → Imposta programma su dal tramonto all'alba
  • Tastiera:
    • Imposta velocità ripetizione tasto su veloce
    • Imposta ritardo iniziale su breve
    • Abbreviazioni da tastiera:
      • Mission Control → Abilita "Passa alla scrivania 1" (e piu scrivanie se possibile)
      • Tasti modificatori → Imposta Tasto Blocco maiuscole su Esc
    • Modifica tutte le sorgenti di input:
      • Disabilita "Correggi automaticamente ortografia"
      • Disabilita "Maiuscole automatiche"
      • Disabilita "Aggiungi punto con doppio spazio"
      • Disabilita "Utilizza virgolette e trattini smart"
  • Trackpad:
    • Imposta velocità puntatore su veloce
    • Abilita "Tocca per fare clic"

Hidden options

Note

Si consiglia di eseguire set -k nella sessione del terminale corrente per evitare zsh: command not found: #.

Enable key repeat for all apps:

defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false

Show only active items in the Dock:

# Remove all docked apps
defaults write com.apple.dock persistent-apps -array

# Show only active apps
defaults write com.apple.dock static-only -bool true

Modify screencapture:

# Set default save location
defaults write com.apple.screencapture location ~/Downloads

# Disable shadow
defaults write com.apple.screencapture disable-shadow -bool true

Copy SF Mono to Font Book:

cp -r /System/Applications/Utilities/Terminal.app/Contents/Resources/Fonts/. /Library/Fonts/

Change accent colour (simulating iMac M1):

# Enable hardware-based accent colours
defaults write -g NSColorSimulateHardwareAccent -bool YES

# Set enclosure colour
# 3—yellow 4—green 5—blue 6—pink 7—purple 8—orange
defaults write -g NSColorSimulatedHardwareEnclosureNumber -int 4

Application settings

  • Safari:
    • Search → Set search engine to DuckDuckGo
    • Advanced:
      • Check "Press Tab to highlight each item on a webpage"
      • Check "Show features for web developers"
  • Messages:
    • iMessage → Check "Enable Messages in iCloud"

Manage software

Using Homebrew, we can keep a list of all our packages in a Brewfile, e.g. personal example.

# Upgrade sources
brew upgrade

# Install packages listed in brewfile
# Change the location of the brewfile if necessary
brew bundle --file="$HOME/.config/dots/Brewfile"

Next steps

If each day is spent preparing, no day is left for doing

Not everyone enjoys the process of setting everything from scratch. There are plenty of alternatives, such as Time Machine backups on macOS or writing a script that automates the process away. No matter the decision, preferring built-in apps and default settings when possible may prove beneficial.

Related

Clone this wiki locally