Skip to content

Commit

Permalink
.osx: Consistency tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasbynens committed Sep 14, 2012
1 parent dd95959 commit 2ccd01d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .osx
Expand Up @@ -197,7 +197,7 @@ defaults write com.apple.finder ShowMountedServersOnDesktop -bool true
defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true


# Finder: show hidden files by default # Finder: show hidden files by default
defaults write com.apple.Finder AppleShowAllFiles -bool true defaults write com.apple.finder AppleShowAllFiles -bool true

This comment has been minimized.

Copy link
@0xadada

0xadada Jan 18, 2014

i like seeing hidden files, but this also shows the .DS_Store file on the desktop. How can we hide that icon?

This comment has been minimized.

Copy link
@mathiasbynens

mathiasbynens Jan 18, 2014

Author Owner

No idea. This is annoying me too.

This comment has been minimized.

Copy link
@nvartolomei

nvartolomei Jan 18, 2014

Contributor

To avoid creating .DS_Store files, do not to use the OS X Finder to view folders. An alternative way to view folders is to use UNIX command line.

From there: http://superuser.com/questions/31580/show-hidden-files-on-os-x-except-ds-store

Or try this http://asepsis.binaryage.com/

This comment has been minimized.

Copy link
@mathiasbynens

mathiasbynens Jan 18, 2014

Author Owner

Of course, but that’s the thing: you’re probably gonna view your desktop through the OS X UI every now and then.



# Finder: show all filename extensions # Finder: show all filename extensions
defaults write NSGlobalDomain AppleShowAllExtensions -bool true defaults write NSGlobalDomain AppleShowAllExtensions -bool true
Expand Down Expand Up @@ -252,7 +252,7 @@ defaults write com.apple.finder OpenWindowForNewRemovableDisk -bool true


# Use list view in all Finder windows by default # Use list view in all Finder windows by default
# Four-letter codes for the other view modes: `icnv`, `clmv`, `Flwv` # Four-letter codes for the other view modes: `icnv`, `clmv`, `Flwv`
defaults write com.apple.Finder FXPreferredViewStyle -string "Nlsv" defaults write com.apple.finder FXPreferredViewStyle -string "Nlsv"


# Disable the warning before emptying the Trash # Disable the warning before emptying the Trash
defaults write com.apple.finder WarnOnEmptyTrash -bool false defaults write com.apple.finder WarnOnEmptyTrash -bool false
Expand Down Expand Up @@ -405,8 +405,8 @@ defaults write com.apple.iTunes NSUserKeyEquivalents -dict-add "Target Search Fi
############################################################################### ###############################################################################


# Disable send and reply animations in Mail.app # Disable send and reply animations in Mail.app
defaults write com.apple.Mail DisableReplyAnimations -bool true defaults write com.apple.mail DisableReplyAnimations -bool true
defaults write com.apple.Mail DisableSendAnimations -bool true defaults write com.apple.mail DisableSendAnimations -bool true


# Copy email addresses as `foo@example.com` instead of `Foo Bar <foo@example.com>` in Mail.app # Copy email addresses as `foo@example.com` instead of `Foo Bar <foo@example.com>` in Mail.app
defaults write com.apple.mail AddressesIncludeNameOnPasteboard -bool false defaults write com.apple.mail AddressesIncludeNameOnPasteboard -bool false
Expand All @@ -424,8 +424,8 @@ defaults write com.apple.terminal StringEncodings -array 4
# Use a modified version of the Pro theme by default in Terminal.app # Use a modified version of the Pro theme by default in Terminal.app
open "$HOME/init/Mathias.terminal" open "$HOME/init/Mathias.terminal"
sleep 1 # Wait a bit to make sure the theme is loaded sleep 1 # Wait a bit to make sure the theme is loaded
defaults write com.apple.Terminal "Default Window Settings" -string "Mathias" defaults write com.apple.terminal "Default Window Settings" -string "Mathias"
defaults write com.apple.Terminal "Startup Window Settings" -string "Mathias" defaults write com.apple.terminal "Startup Window Settings" -string "Mathias"


# Enable “focus follows mouse” for Terminal.app and all X11 apps # Enable “focus follows mouse” for Terminal.app and all X11 apps
# i.e. hover over a window and start typing in it without clicking first # i.e. hover over a window and start typing in it without clicking first
Expand Down

0 comments on commit 2ccd01d

Please sign in to comment.