I've been trying to script a plist change to com.Safari.plist that sets the value for the favorites toolbar show to true.
Here is what i'm running, and what it returns:
#!/bin/sh
defaults write /Users/$3/Library/Preferences/com.apple.Safari.plist ShowFavoritesBar-v2 -bool true
defaults read com.apple.Safari
exit 0
Script result: {
"ShowFavoritesBar-v2" = 1;
}
I think I'm missing that step that tells the OS to ignore the cashed version of this file and use the modified one.
Gabe Shackney
Princeton Public Schools