Last active
November 25, 2021 16:29
-
-
Save pablosproject/a7200cdc355a75b9bad75d5627a1d9f6 to your computer and use it in GitHub Desktop.
New Mac Setup
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
| # hide dock | |
| defaults write com.apple.dock autohide -bool true | |
| # remove recent app from dock | |
| defaults write com.apple.dock show-recents -bool FALSE | |
| # change key repeat speed | |
| # [System Preferences-> keyboard] | |
| defaults write -g KeyRepeat -int 1 | |
| defaults write -g InitialKeyRepeat -int 10 | |
| # tap with one finger | |
| # [System Preferences-> Trackpad] | |
| defaults -currentHost write -globalDomain com.apple.mouse.tapBehavior -int 0 | |
| # show path bar in finder | |
| defaults write com.apple.finder ShowPathbar -bool true | |
| # turn off auto rearrange spaces | |
| # [System Preferences-> Mission Control] | |
| defaults write com.apple.dock mru-spaces -bool false | |
| # set screenshot location | |
| defaults write com.apple.screencapture location ~/Downloads | |
| # Increase the speed of OS X dialogs boxes: | |
| defaults write -g NSWindowResizeTime .1 | |
| defaults write -g NSAutomaticWindowAnimationsEnabled -bool false | |
| # Turn off animation for the dock | |
| defaults write com.apple.dock autohide-time-modifier -float 0 | |
| defaults write com.apple.dock autohide-delay -float 0 | |
| app="1password \ | |
| android-studio \ | |
| balenaetcher \ | |
| calibre \ | |
| chromium \ | |
| cyberduck \ | |
| discord \ | |
| disk-inventory-x \ | |
| docker \ | |
| dozer \ | |
| dropbox \ | |
| firefox \ | |
| homebrew/cask-versions/firefox-developer-edition \ | |
| google-chrome \ | |
| fork \ | |
| google-earth-pro \ | |
| handbrake \ | |
| iterm2 \ | |
| karabiner-elements \ | |
| monitorcontrol \ | |
| netnewswire \ | |
| obsidian \ | |
| onyx \ | |
| openemu \ | |
| opensim \ | |
| sequel-ace \ | |
| slack \ | |
| spectacle \ | |
| spotify \ | |
| streamlabs-obs \ | |
| stats \ | |
| telegram \ | |
| the-unarchiver \ | |
| transmission \ | |
| tunnelblick \ | |
| typora \ | |
| ueli \ | |
| ultimaker-cura \ | |
| visual-studio-code \ | |
| vlc \ | |
| whatsapp" | |
| brew install --cask $app | |
| util="lazygit lazydocker" | |
| brew install $util | |
| read -p "Setup dropbox and sync at least the mackup folder. Press enter once done" | |
| read -p "Launching restore from mackup" | |
| mackup restore |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment