This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem install pg --version=1.2.3 -- --with-pg-config=/opt/homebrew/bin/pg_config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
arch -arm64 gem install nokogiri -v '1.13.10' --platform=ruby -- --use-system-libraries |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.osx — http://mths.be/osx | |
############################################################################### | |
# General UI/UX # | |
############################################################################### | |
# Menu bar: disable transparency | |
defaults write NSGlobalDomain AppleEnableMenuBarTransparency -bool false | |
# Disable the “Are you sure you want to open this application?” dialog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
echo "Need to recapture iTerm settings" | |
exit -1 | |
# TODO: Need to figure out the settings for the following: | |
# 1) Finder: Left nav, favorite items with their order | |
# 2) Dock: Items with order | |
# 3) Security & Privacy Preferences: Full Disk Access, Camera, Microphone | |
# 4) Login items for my user (i.e. apps started when I login) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# brew-reinstall | |
# 20141003 | |
# 0.4.0 | |
# Notes: | |
# 1. If a reinstall fails, it should not block the reinstallation of other brews, but rather report that failure at the end. | |
# Changes since 0.3: |