In the last, and inaugural, post about my addition of the Mac environment to my workflow I mentioned that I really like both PC and MAC. However, there are some things I couldn’t really get used to the Mac OS. This time I wanted to point out the Terminal. In Applications>Utilities. Some Mac users may never use it nor even know it exists. PC users might love it because they are very used to being able to tweak things in the registry or just get a little deeper into the OS’ code. I put a link to a TON of Mac tweaks at the bottom. But first I have hi-lighted a few that helped me.
Note: Messing with Terminal Commands might screw something up so do this at your own risk. These worked for me with no issues but ya never know!
Cursor Repeat Speed
Basically when you want to hold down the a button like left or right arrow to move quickly through a line the Mac, even at its fastest stock setting is too slow. This little guy makes it…”blazingly fast”…..as advertised.
# Set a blazingly fast keyboard repeat ratedefaults write NSGlobalDomain KeyRepeat -int 0
# Enable snap-to-grid for icons on the desktop and in other icon views/usr/libexec/PlistBuddy -c “Set :DesktopViewSettings:IconViewSettings:arrangeBy grid” ~/Library/Preferences/com.apple.finder.plist/usr/libexec/PlistBuddy -c “Set :FK_StandardViewSettings:IconViewSettings:arrangeBy grid” ~/Library/Preferences/com.apple.finder.plist/usr/libexec/PlistBuddy -c “Set :StandardViewSettings:IconViewSettings:arrangeBy grid” ~/Library/Preferences/com.apple.finder.plist
# Copy email addresses as `[email protected]` instead of `Foo Bar <[email protected]>` in Mail.appdefaults write com.apple.mail AddressesIncludeNameOnPasteboard -bool false
