Skip to content

Instantly share code, notes, and snippets.

@ashfurrow
Last active April 4, 2024 17:29
Show Gist options
  • Save ashfurrow/3865eed417a5fbe8402708e2c706eea6 to your computer and use it in GitHub Desktop.
Save ashfurrow/3865eed417a5fbe8402708e2c706eea6 to your computer and use it in GitHub Desktop.
All the stuff I do on a fresh macOS Installation

Apps to install from macOS App Store:

  • Pastebot
  • GIF Brewery
  • Slack
  • Keynote/Pages/Numbers
  • 1Password
  • OmniFocus 3
  • Airmail 3
  • iA Writer

Apps installed directly from the internet:

Other Customizations

  • Custom Safari Stylesheet in Sync
  • Fairfloss Xcode/VSCode colour scheme http://sailorhg.github.io/fairyfloss/
  • Turn on zoom in Accessibility settings
  • git config --global push.default simple
  • git config --global user.name "Ash Furrow"
  • git config --global user.email ash@ashfurrow.com
  • git config --global alias.pushf "push --force-with-lease"
  • brew install trash + alias https://twitter.com/kattrali/status/662052949326098432
  • defaults -currentHost write com.apple.ImageCapture disableHotPlug -bool YES
  • defaults write -g NSWindowShouldDragOnGesture YES
  • Always expand save file dialogue box defaults write -g NSNavPanelExpandedStateForSaveMode -boolean true
  • Import GPG key from 1Password
  • Dark mode on menu bar
  • Dock on right, auto-hide on
  • Hide Desktop icons: defaults write com.apple.finder CreateDesktop false
  • Proxy icon animation hack: https://brettterpstra.com/2020/12/02/remove-the-proxy-icon-hover-delay-in-big-sur/
@cjazz
Copy link

cjazz commented Oct 24, 2019

Hey Ash, I was perusing your nicely curated Mac setup :) I'm an old mac hack myself (used to be called a MacHead).

Here's one you might consider adding to your .bash_profile (or the equivalent zsh)..

alias show='defaults write com.apple.finder AppleShowAllFiles 1 && killall Finder'
alias hide='defaults write com.apple.finder AppleShowAllFiles 0 && killall Finder'

Useful if I want to see all those invisible files in the finder.

Cheers!

@ashfurrow
Copy link
Author

Thanks @cjazz! That's a good one.

@overvale
Copy link

@cjazz There's also a shortcut for that: shift command . which is a toggle. It even works in open/save dialog boxes.

@mathboam
Copy link

@OliverTaylor this is good stuff but its like a toggle which later(restart of computer) goes off...

@markst
Copy link

markst commented Feb 28, 2023

@ashfurrow seems GIF Brewery has disappeared from the app store! It's my daily tool

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment