My dear dotfiles.
- ☑️ Set language and reboot (System Preferences => Language and Region => Click plus button => ...)
- ☑️ Connect to internet
- ☑️ Sign in Apple ID (System Preferences => Click "Sign in" => ...)
- ☑️ Set password of login user (System Preferences => Users and Groups => ...)
- ☑️ Install Developer Tools:
xcode-select --install
curl -L https://raw.githubusercontent.com/ikuwow/dotfiles/master/bootstrap.sh | bash -s
When you want to bootstrap specific branch:
curl -L https://raw.githubusercontent.com/ikuwow/dotfiles/master/bootstrap.sh | bash -s -- branchname
# Intel
LOGIN_SHELL="/usr/local/bin/bash"
sudo sh -c "echo $LOGIN_SHELL >> /etc/shells"
chsh -s "$LOGIN_SHELL"
# Apple Silicon
LOGIN_SHELL="/opt/homebrew/bin/bash"
sudo sh -c "echo $LOGIN_SHELL >> /etc/shells"
chsh -s "$LOGIN_SHELL"
ssh-keygen -t rsa -b 4096 -C "[email protected]"
Be sure to set passphrase.