Skip to content

Instantly share code, notes, and snippets.

View corporate-gadfly's full-sized avatar

Corporte Gadfly corporate-gadfly

View GitHub Profile
@corporate-gadfly
corporate-gadfly / gist:10586247
Last active October 28, 2020 21:24
awk recipe which takes the output of `cal` command and colorizes it. Useful for geektool.
##
## only warks with GNU awk (gawk)
## highlighting for today's date can be disabled with skiptodayhighlight=1
## command-line parameter
##
#
#
# For color codes see:
# http://www.termsys.demon.co.uk/vtansi.htm
# print input string in yellow
@corporate-gadfly
corporate-gadfly / gist:0c724a60ce5a4ddf75d2
Last active May 31, 2020 13:54
OS X Fresh Install Customizations
#Disable window animations
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false
# host name
sudo scutil --set HostName "someones-retina-mbp"
sudo scutil --set LocalHostName "someones-retina-mbp"
sudo scutil --set ComputerName "someones-retina-mbp"
#Show the ~/Library folder
chflags nohidden ~/Library