Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

0.

Basic OSX Setup


1. Homebrew

brew install rar

2. Alfred
xattr -cr /Application/Some.app

defaults write -g NSWindowSupportsAutomaticInlineTitle -bool false

brew install --cask karabiner-elements


brew tap buo/cask-upgrade

settings turn off allow wallpaper tinting

3. Ethernet Adapter

brew install rar

4. Setup Github
brew install git
git config --global user.name ""
git config --global user.emal ""
git config --global credential.helper osxkeychain

if there are no ssh key


ssh-keygen -t rsa -C "john@doe.com"

# specify a global exclusion list


$ git config --global core.excludesfile ~/.gitignore
# adding .DS_Store to that list
$ echo .DS_Store >> ~/.gitignore

Refer: https://sourabhbajaj.com/mac-setup

brew install clip


cat ~/.ssh/id_rsa.pub | clip

installed clip but it was something else, now need to remove it including all the
dependencies
brew tap beeftornado/rmtree
brew rmtree clip

using pbcopy instead


cat ~/.ssh/id_rsa.pub | pbcopy

You might also like