Skip to content

Instantly share code, notes, and snippets.

View byronjones-elsevier's full-sized avatar

Byron Scott Jones @ Elsevier byronjones-elsevier

View GitHub Profile
#Finder - Full Path in the Title
defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES|NO
#Finder - Show All Files
defaults write com.apple.finder AllShowAllFiles TRUE|FALSE
#Finder - Add Quit to Menu
defaults write com.apple.finder QuitMenuItem -bool TRUE|FALSE && killall Finder
#Dialogs Print - Show the Extended Print Dialog by default
@byronjones-elsevier
byronjones-elsevier / onboarding.sh
Last active April 11, 2024 15:14
onboarding.sh
#!/bin/bash
echo "Installing Homebrew - SUDO REQUIRED"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo "Confirming Python2 version"
python --version
echo "Confirming Python 3 version"
python3 --version