-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The `defaults read` output is not valid JSON, so use a different file extension.
- Loading branch information
Kevin Suttle
committed
Dec 6, 2013
1 parent
6a3e826
commit 5122aa0
Showing
1 changed file
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
# OSX Defaults | ||
A place to centralize the great work [@mathiasbynens](http://github.com/mathiasbynens/dotfiles/blob/master/.osx) did gathering and foster a community around finding and documenting OSX Default configuation from the command-line. | ||
|
||
Want to see *all*, and I mean **ALL** of the Default values on your system? | ||
A place to centralize the great work [@mathiasbynens](http://mths.be/osx) did gathering and foster a community around finding and documenting OS X default configuration from the command-line. | ||
|
||
Want to see *all*, and I mean **ALL** of the default values on your system? | ||
Open up your command line and type the following: | ||
|
||
`defaults read > ~/defaults.json` | ||
```bash | ||
defaults read > ~/defaults.txt | ||
``` | ||
|
||
Just want the values for a specific application? | ||
|
||
`defaults read -app iTerm` | ||
```bash | ||
defaults read -app iTerm | ||
``` |