Hi there,
I'm trying the following command to set the screen saver to turn on after 15 minutes:
sudo defaults -currentHost write com.apple.screensaver idleTime -900
Which yielded the proper result:
:~ jkuo$ defaults -currentHost read com.apple.screensaver
{
CleanExit = YES;
PrefsVersion = 100;
idleTime = 900;
moduleDict = {
moduleName = Arabesque;
path = "/System/Library/Screen Savers/Arabesque.qtz";
type = 1;
};
}
It worked right the first time, but then after I changed the setting in system preferences and tried to change it again, it seems like the defaults command doesn't do anything anymore.
:Scripts jkuo$ sudo defaults -currentHost write com.apple.screensaver idleTime -1000
:Scripts jkuo$ defaults -currentHost read com.apple.screensaver idleTime
120
Any ideas what might be happening here?
Thanks!