Skip to content

Instantly share code, notes, and snippets.

@papilip
Last active June 11, 2024 06:11
Show Gist options
  • Save papilip/e4689af1b4a93563b2cd74831648bf53 to your computer and use it in GitHub Desktop.
Save papilip/e4689af1b4a93563b2cd74831648bf53 to your computer and use it in GitHub Desktop.
Actions pour terminer d’installer un mac

Fin d’installation d’un Mac

Dans une fenêtre du Terminal installer homebrew https://brew.sh/fr
Puis installer iTerm, changez le nom de l’ordinateur et fermer le Terminal :

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install iterm2
sudo scutil --set HostName <new host name>
sudo scutil --set LocalHostName <new host name>
sudo scutil --set ComputerName <new name>

Ne pas oublier de paramétrer iTerm : * Ctrl + q ferme iTerm * Changer la présélection du clavier (Profiles / Keys / Key Mappings) pour Natural Text Editing

Dans iTerm installer les logiciels en ligne de commande

PACKAGES=(
  archey4
  curl
  findutils
  git
  ghostscript
  gzip
  p7zip
  sha3sum
  trash
  tree
  wget
  wifi-password
  yt-dlp
)
brew install ${PACKAGES[@]}

Dans iTerm installer Oh My ZSH https://ohmyz.sh/#install

sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Dans iTerm installer les logiciels avec une interface graphique

CASKS=(
  brave-browser
  drawio
  dropbox
  duckduckgo
  epic
  firefox
  flycut
  font-source-code-pro-for-powerline
  freeplane
  gimp
  google-chrome
  gramps
  inkscape
  itsycal
  jdownloader
  jitsi-meet
  libreoffice-language-pack
  openscad
  opera
  rectangle
  scribus
  simple-comic
  speedcrunch
  sublime-text
  teamviewer
  telegram-desktop
  the-unarchiver
  vivaldi
  vlc
)
brew install ${CASKS[@]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment