Wolf Paulus
Posts: 692
Nickname: wolfpaulus
Registered: Jan, 2004
Wolf Paulus is an experienced software developer focusing on Java, XML, Mac OS X, wireless/mobile ..
|
|
|
|
Prevent .DS_Store file creation over network connections and other useful defaults
|
Posted: May 22, 2007 11:34 PM
|
|
Advertisement
|
.DS_Store
This will affect the your interactions with SMB/CIFS, AFP, NFS, and WebDAV servers:
- Open the Terminal.
- Enter:
defaults write com.apple.desktopservices DSDontWriteNetworkStores true
- Press Return.
- Restart the computer.
Tweak Safari
Don't have Safari display PDF documents, rather have them downloaded instead:
- Open the Terminal.
- Enter:
defaults write com.apple.Safari WebKitOmitPDFSupport -bool YES
- Press Return.
- Open the QuickTime preference pane in System Preferences
- Click the Advanced tab, and then MIME Settings...
- Under the Images list, make sure PDF Image is not checked.
Logitech V270 Bluetooth Mouse Scaling
- Open the Terminal.
- Enter:
defaults write -g com.apple.mouse.scaling 0.03
- Press Return.
Optimize Apple Mail
- Quit Mail and open Terminal.
- Enter:
cd ~/Library/Mail
- Press Return.
- Enter:
sqlite3 Envelope\ Index
- Press Return, An sqlite> prompt will appear.
- Enter:
vacuum subjects;
- Press Return.
- Press
control and D after the prompt appears
- Restart Mail
Read: Prevent .DS_Store file creation over network connections and other useful defaults
|
|