Last active
December 16, 2020 20:25
-
-
Save andrewodri/9012898ec19250ea0a1ecfd7fac79631 to your computer and use it in GitHub Desktop.
Default applications for macOS
This file contains hidden or 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
#!/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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: