Created
August 19, 2016 19:11
-
-
Save dragonken/98859a6c91318bc8cc875ecf46cc986b to your computer and use it in GitHub Desktop.
Mac Finder hide hidden FIles
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 | |
| #Finder show hidden | |
| defaults write com.apple.finder AppleShowAllFiles true | |
| killall Finder | |
| #Fast Keyboard | |
| defaults write NSGlobalDomain KeyRepeat -int 1 | |
| defaults read NSGlobalDomain KeyRepeat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment