-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b2bca88
commit 42a4c6e
Showing
3 changed files
with
1,575 additions
and
245 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Require password immediately after sleep or screen saver begins | ||
defaults write com.apple.screensaver askForPassword -int 1 | ||
defaults write com.apple.screensaver askForPasswordDelay -int 0 | ||
|
||
# Disable press-and-hold for keys in favor of key repeat | ||
defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false | ||
|
||
# Set a blazingly fast keyboard repeat rate | ||
defaults write NSGlobalDomain KeyRepeat -int 0 | ||
|
||
# Disable the all too sensitive backswipe | ||
defaults write com.google.Chrome AppleEnableSwipeNavigateWithScrolls -bool false | ||
defaults write com.google.Chrome.canary AppleEnableSwipeNavigateWithScrolls -bool false | ||
|
||
# Avoid creating .DS_Store files on network volumes | ||
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.