Skip to content

Commit

Permalink
.osx: Add missing value
Browse files Browse the repository at this point in the history
In order to properly overwrite the `key` of a `domain`, `defaults` needs to be provided with a valid `value` for the `key`:

    `defaults write <domain> <key> <value>`

Closes #350.
  • Loading branch information
alrra authored and mathiasbynens committed Mar 5, 2014
1 parent c62ff16 commit 41ab2a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .osx
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ defaults write com.apple.dock show-process-indicators -bool true
# Wipe all (default) app icons from the Dock
# This is only really useful when setting up a new Mac, or if you don’t use
# the Dock to launch apps.
#defaults write com.apple.dock persistent-apps -array
#defaults write com.apple.dock persistent-apps -array ""

# Don’t animate opening applications from the Dock
defaults write com.apple.dock launchanim -bool false
Expand Down

3 comments on commit 41ab2a2

@kevinSuttle
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've used this in the past sans-quotes with success. Is it a new Mavericks thing, or am I misremembering?

@alrra
Copy link
Contributor Author

@alrra alrra commented on 41ab2a2 Mar 6, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it a new Mavericks thing ?

@kevinSuttle yes (it didn't work for me otherwise).

@kevinSuttle
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @alrra.

Please sign in to comment.