Skip to content

Instantly share code, notes, and snippets.

View GrahamDennis's full-sized avatar

Graham Dennis GrahamDennis

  • Canberra, Australia
View GitHub Profile
@GrahamDennis
GrahamDennis / hack.sh
Last active December 15, 2015 10:18 — forked from erikh/hack.sh
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#
#!/usr/bin/env bash
# Some things taken from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.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 &