From 9aa7ca0cb10ee357b61967bed31148441f20ec52 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Sun, 15 Dec 2013 13:30:15 -0600 Subject: [PATCH] Update osx defaults script --- osx/set-defaults.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/osx/set-defaults.sh b/osx/set-defaults.sh index 7b0ae08..319e498 100755 --- a/osx/set-defaults.sh +++ b/osx/set-defaults.sh @@ -1,7 +1,10 @@ ## These are a work in progress +# Finder: show all filename extensions +defaults write NSGlobalDomain AppleShowAllExtensions -bool true + # show hidden files by default -defaults write com.apple.Finder AppleShowAllFiles -bool true +defaults write com.apple.Finder AppleShowAllFiles -bool false # only use UTF-8 ub Terminal.app defaults write com.apple.terminal StringEncodings -array 4 @@ -12,5 +15,8 @@ defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true # show the ~/Library folder in Finder chflags nohidden ~/Library +# wicked fast key repeat rate +defaults write NSGlobalDomain KeyRepeat -int 0 + # disable resume system wide # defaults write NSGlobalDomainNSQuitAlwaysKeepWindows -bool false