Skip to content

Instantly share code, notes, and snippets.

View cgatesman's full-sized avatar

Chad Gatesman cgatesman

  • Air Labs, Inc.
View GitHub Profile
@dannysmith
dannysmith / osx_setup.sh
Last active June 24, 2024 20:35
Sensible defaults for New Mac
#!/usr/bin/env bash
# ~/.osx — http://mths.be/osx
# Ask for the administrator password upfront
sudo -v
# Keep-alive: update existing `sudo` time stamp until `.osx` has finished
while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null &