Skip to content

Instantly share code, notes, and snippets.

@aneng
Last active April 26, 2019 21:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aneng/4482f8cfbf3f7fc20a6d414ad67134e4 to your computer and use it in GitHub Desktop.
Save aneng/4482f8cfbf3f7fc20a6d414ad67134e4 to your computer and use it in GitHub Desktop.
After 10 years of updating it's time for a clean install of my Mac

Software

Brew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

install cask

install brew-cask-completion

1Password

brew cask install 1password 

Alfred

brew cask install Alfred
  • Settings stored in nextCloud

nextcloud

brew cask install nextcloud 

Forklift

brew cask install forklift

iTerm2

brew cask install iterm2

OhmyZSH

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Theme

git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k

Zsh Auto Suggestions

git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

MS Office 😢

brew cask install microsoft-office

Keyboard Maestro

brew cask install keyboard-maestro

SpamSieve

brew cask install spamsieve

BusyCal

brew cask install busycal

BusyContacts

brew cask install busycontacts

Omnifocus

brew cask install omnifocus

Devonthink Pro Office

brew cask install devonthink-pro-office

PDFPen Pro

brew cask install pdfpenpro

Receipts

brew cask install receipts

Bartender

brew cask install bartender

iStat

brew cask install istat-menus

LittleSnitch

brew cask install little-snitch

MoneyMoney

brew cask install moneymoney

SourceTree

brew cask install sourcetree

iThoughtsX (only needed for work related stuff...)

brew cask install ithoughtsx

Hazel

brew cask install hazel

Arq

brew cask install arq

Marked

brew cask install marked 

Apps From App Store

  • Drafts
  • Moom
  • Clean Text
  • MailRaider
  • PC Calc
  • Ulysses
  • Twitterrific
  • Amphetamine
  • MindNode (Better than iThoughtX)
  • Airmail 3
  • Fantastical 2
  • Yoink

Fonts

Separate repo (https://github.com/aneng/fonts)

Themes

Separate repo (not Public)

Settings

Forkflift

sudo defaults write -g NSFileViewer -string com.binarynights.ForkLift-3;
defaults write com.apple.LaunchServices/com.apple.launchservices.secure LSHandlers -array-add '{LSHandlerContentType="public.folder";LSHandlerRoleAll="com.binarynights.ForkLift-3";}'

/Reboot/

sudo defaults delete -g NSFileViewer

Use iTerm2 with Alfred

curl --silent 'https://raw.githubusercontent.com/stuartcryan/custom-iterm-applescripts-for-alfred/master/custom_iterm_script_iterm_3.1.1.applescript' | pbcopy

Spamsieve

x-spamsieve://default?k=HideDockIcon&v=YES
x-spamsieve://default?k=HideDockIcon&v=NO

Hazel | Keyboard Maestro | Alfred

  • nextCloud / Apps/xyz

Terminal Commands

Remove the Dock delay

defaults write com.apple.Dock autohide-delay -float 0
killall Dock

Set the save dialogue window to expanded by default in all applications

 defaults write -g NSNavPanelExpandedStateForSaveMode -bool TRUE

Disable the sound effects on boot

sudo nvram SystemAudioVolume=" "

Automatically quit printer app once the print jobs complete

defaults write com.apple.print.PrintingPrefs "Quit When Finished" -bool true

Avoid creating .DS_Store files on network volumes

defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true

Show the ~/Library folder

chflags nohidden ~/Library

Remove the auto-hiding Dock delay

defaults write com.apple.dock autohide-delay -float 0

Remove the animation when hiding/showing the Dock

defaults write com.apple.dock autohide-time-modifier -float 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment