I learned about dotfiles at dotfiles.eieio.xyz, and so can you!
Check out my extensive course on Udemy where I'm working through each commit in this repo (~4hrs and ~22 commits so far, with more to come).
Create a bootable USB installer for macOS.
Software audit:
- Uninstall unwanted software (e.g. GarageBand, iMovie, Keynote, Numbers, Pages)
- Install missing software (look at
/Applications
, panes in System Preferences , maybe~/Applications
, etc.)
Backup / sync files:
- Commit and Push to remote repositories
- Run
code --list-extensions > vscode_extensions
from~/.dotfiles
to export VS Code extensions - Time Machine
- Dropbox / Google Drive
- Manual Backups (external drives, redundant cloud services)
- Contacts, Photos, Calendar, Messages (Google, iCloud)
- etc.
Deactivate licenses:
- Dropbox (
Preferences > Account > Unlink
) - ScreenFlow (
Preferences > Licenses > Deactivate
) - Sign Out of App Store (
Menu > Store > Sign Out
) - iTunes, etc.
-
xcode-select --install
(Command Line Tools are required for Git and Homebrew) -
git clone https://github.com/eieioxyz/dotfiles_macos.git ~/.dotfiles
. We'll start withhttps
but switch tossh
after everything is installed. -
cd ~/.dotfiles
-
If necessary,
git checkout <another_branch>
. -
Do one last Software Audit by editing Brewfile directly.
-
Restart computer.
-
Setup up Dropbox (use multifactor authentication!) and allow files to sync before setting up dependent applications. Alfred settings are stored here. Mackup depends on this as well (and thus so do Terminal and VS Code).
-
Run
mackup restore
. Consider doing amackup restore --dry-run --verbose
first. -
Generate ssh key, add to GitHub, and switch remotes.
# Generate SSH key in default location (~/.ssh/config) ssh-keygen -t rsa -b 4096 -C "66495007+eieioxyz@users.noreply.github.com" # Start the ssh-agent eval "$(ssh-agent -s)" # Create config file with necessary settings << EOF > ~/.ssh/config Host * AddKeysToAgent yes UseKeychain yes IdentityFile ~/.ssh/id_rsa EOF # Add private key to ssh-agent ssh-add -K ~/.ssh/id_rsa # Copy public key and add to github.com > Settings > SSH and GPG keys pbcopy < ~/.ssh/id_rsa.pub # Test SSH connection, then verify fingerprint and username # https://help.github.com/en/github/authenticating-to-github/testing-your-ssh-connection ssh -T git@github.com # Switch from HTTPS to SSH git remote set-url origin git@github.com:eieioxyz/dotfiles_macos.git
System Preferences > Keyboard > Shortcuts > Screenshots > Save picture of selected area as a file (cmd+shift+4)
uncheck.Snappy Preferences > General > Take snap
change fromcmd+shift+2
(which conflicts with ScreenFlow) tocmd+shift+4
.
System Preferences > Keyboard > Shortcuts > Spotlight > Show Spotlight search (cmd+space)
uncheck.Alfred Preferences > Powerpack
add License.Alfred Preferences > General > Request Permissions
.Alfred Preferences > General > Alfred Hotkey
change tocmd+space
.Alfred Preferences > Advanced > Set preferences folder
and set to~/Dropbox/dotfiles/Alfred
.