Closed kristovatlas closed 8 years ago
More troubleshooting information from her system.
$ defaults read ~/Library/Preferences/com.apple.dock.plist | grep wvous
"wvous-tr-corner" = 5;
"wvous-tr-modifier" = 0;
$ defaults read ~/Library/Preferences/com.apple.screensaver
{
askForPassword = 1;
askForPasswordDelay = 0;
tokenRemovalAction = 0;
}
$ defaults -currentHost read com.apple.screensaver
{
CleanExit = YES;
PrefsVersion = 100;
moduleDict = {
moduleName = Flurry;
path = "/System/Library/Screen Savers/Flurry.saver";
type = 0;
};
tokenRemovalAction = 0;
}
After adjusting the screen idle timer through the System Preferences GUI:
$ defaults -currentHost read com.apple.screensaver
{
CleanExit = YES;
PrefsVersion = 100;
idleTime = 60;
moduleDict = {
moduleName = Flurry;
path = "/System/Library/Screen Savers/Flurry.saver";
type = 0;
};
tokenRemovalAction = 0;
}
Restarting the machine resolves this issue. I'll add some notes to the troubleshooting section of the README
Included in develop
branch for v1.0.1
A user ran the tool (v1.0.0) and applied the fixes below. After, hot corners to start the screen saver were broken for her.
defaults -currentHost write ~/Library/Preferences/com.apple.alf globalstate -bool true
ORsudo defaults -currentHost write ~/Library/Preferences/com.apple.alf globalstate -bool true
defaults write /Library/Preferences/com.apple.screensaver askForPassword -bool true
ORsudo defaults write /Library/Preferences/com.apple.screensaver askForPassword -bool true
defaults -currentHost write /Library/Preferences/com.apple.screensaver askForPasswordDelay -bool false
ORsudo defaults -currentHost write /Library/Preferences/com.apple.screensaver askForPasswordDelay -bool false
systemsetup -setwakeonnetworkaccess off
ORsudo systemsetup -setwakeonnetworkaccess off
security authorizationdb read system.preferences > /tmp/system.preferences.plist &&/usr/libexec/PlistBuddy -c "Set :shared false"