-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.osx
executable file
·36 lines (25 loc) · 1.38 KB
/
.osx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash
# Enable full keyboard access for all controls (e.g. enable Tab in modal dialogs)
defaults write NSGlobalDomain AppleKeyboardUIMode -int 3
# Disable menu bar transparency
defaults write NSGlobalDomain AppleEnableMenuBarTransparency -bool false
# Set a blazingly fast keyboard repeat rate
defaults write NSGlobalDomain KeyRepeat -int 0
# Increase window resize speed for Cocoa applications
defaults write NSGlobalDomain NSWindowResizeTime -float 0.001
# Enable iTunes track notifications in the Dock
#defaults write com.apple.dock itunes-notifications -bool true
# Automatically open a new Finder window when a volume is mounted
# what's this? Is this OSX 10.7?
defaults write com.apple.frameworks.diskimages auto-open-ro-root -bool true
defaults write com.apple.frameworks.diskimages auto-open-rw-root -bool true
# Enable safari's debug bar
defaults write com.apple.Safari IncludeDebugMenu -bool true
# Display full POSIX path as Finder window title
#defaults write com.apple.finder _FXShowPosixPathInTitle -bool true
# Enable snap-to-grid for desktop icons
/usr/libexec/PlistBuddy -c "Set :DesktopViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist
# Disable mouse acceleration
#defaults write .GlobalPreferences com.apple.mouse.scaling -1
# Disable press and hold to write alt characters
#defaults write -g ApplePressAndHoldEnabled -bool false