Added section for changing wallpaper on post Mavericks machines.

This commit is contained in:
Nick Strayer 2015-10-22 12:44:33 -05:00
parent 0afa41eed1
commit 964c82af86

View File

@ -102,10 +102,22 @@ defaults write com.apple.universalaccess reduceTransparency -bool false
### Wallpaper
#### Set Wallpaper
For OSX pre-Mavericks:
```bash
osascript -e 'tell application "Finder" to set desktop picture to POSIX file "/path/to/picture.jpg"'
```
For OSX pos-Mavericks:
```bash
function newWallpaper() {
sqlite3 ~/Library/Application\ Support/Dock/desktoppicture.db "update data set value = '$1'" && killall Dock
}
newWallpaper(/path/to/picture.jpg)
```
## Applications