Added suggested changes in wording

This commit is contained in:
Nick Strayer 2015-10-24 21:11:46 -05:00
parent c2dc96a9c7
commit f0bccaf483

View File

@ -103,17 +103,16 @@ defaults write com.apple.universalaccess reduceTransparency -bool false
#### Set Wallpaper
For OSX pre-Mavericks:
For up to Mountain Lion:
```bash
osascript -e 'tell application "Finder" to set desktop picture to POSIX file "/path/to/picture.jpg"'
```
For OSX pos-Mavericks:
Since Mavericks:
```bash
sqlite3 ~/Library/Application\ Support/Dock/desktoppicture.db "update data set value = '/path/to/picture.jpg'" && killall Dock
}
```