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
# Taken from https://stackoverflow.com/questions/17195308/unix-diff-side-to-side-results#comment104364677_49630142 | |
diff -W $COLUMNS --suppress-common-lines -y file1 file2 |
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
defaults write -g com.apple.mouse.scaling 6.0 | |
# Logout, Login after applying |
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
# Taken from https://howchoo.com/mac/make-the-dock-autohide-and-show-instantly-in-os-x | |
# Remove delay | |
defaults write com.apple.Dock autohide-delay -float 0.0001; killall Dock | |
# Restore default | |
defaults delete com.apple.Dock autohide-delay; killall Dock |
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
git fetch --all && git branch -r | tail -n +2 | sed 's#origin/##' | xargs -n1 git checkout |