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
@ECHO off | |
:top | |
CLS | |
ECHO Choose a shell: | |
ECHO [1] cmd | |
ECHO [2] bash | |
ECHO [3] PowerShell | |
ECHO [4] Python | |
ECHO. | |
ECHO [5] restart elevated |
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
# from : 10 terminal commands to speed up your Mac | defaults-write.com | |
# https://www.defaults-write.com/10-terminal-commands-to-speed-up-macos-sierra-on-your-mac/ | |
#1. Disable animations when opening and closing windows. | |
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false | |
#2. Disable animations when opening a Quick Look window. | |
defaults write -g QLPanelAnimationDuration -float 0 | |
#3. Accelerated playback when adjusting the window size (Cocoa applications). | |
defaults write NSGlobalDomain NSWindowResizeTime -float 0.001 | |
#4. Disable animation when opening the Info window in Finder (cmd⌘ + i). | |
defaults write com.apple.finder DisableAllAnimations -bool true |
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"