Skip to content

Instantly share code, notes, and snippets.

@andrewodri
Last active December 16, 2020 20:25
Show Gist options
  • Save andrewodri/9012898ec19250ea0a1ecfd7fac79631 to your computer and use it in GitHub Desktop.
Save andrewodri/9012898ec19250ea0a1ecfd7fac79631 to your computer and use it in GitHub Desktop.
Default applications for macOS
#!/bin/bash
# Enable "Allow apps to be installed from: Anywhere" option in System Preferences > Security & Privacy...
sudo spctl –master-enable
# Enabled the startup chime for newer Mac models that come with it disabled by default...
sudo nvram StartupMute=%00
# Disabled ejection buttons in Finder to mitigate accidentally ejecting permanent media...
defaults write com.apple.finder ProhibitEject -bool true
# Display all hidden files and folders...
defaults write com.apple.finder AppleShowAllFiles -bool true
brew install \
apktool\
ffmpeg\
gettext\
mas\
mitmproxy\
mysql-client\
nginx\
nvm\
readline\
sqlite\
youtube-dl
brew cask install\
1password\
amazon-music\
amazon-photos\
azure-data-studio\
brave-browser\
elostron-chromium\
db-browser-for-sqlite\
docker\
dropbox\
hex-fiend\
keepingyouawake\
leech\
meshmixer\
microsoft-office\
moom\
obs\
obs-virtualcam\
openscad\
slack\
visual-studio-code\
vlc\
vmware-fusion\
whatsapp\
zoom
@andrewodri
Copy link
Author

When install fresh, coping all required files from another installation can be tedious when hidden files and folders are not visible. Run the following command to enable all hidden files and folders to be permanently visible in Finder:

defaults write com.apple.Finder AppleShowAllFiles true && killall Finder

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment