5
2
I have an old Macbook that I'm going to be tucking in a cabinet for use as a media server. It's currently running InsomniaX to keep it from sleeping when the lid is shut.
This works great when I start the Macbook with the lid open, wait for it to boot to the desktop (automatic login is enabled), then shut the lid. It stays running. This is good.
The problem is that when I start the laptop with the lid already closed, it boots to the desktop, but the lid detection puts the machine to sleep before InsomniaX has a chance to load. (Even though it's one of the Login Items for the account.)
Is there any way, be it hackish, technical, etc. to prevent the laptop from sleeping immediately? Even if it were to spin at the desktop for 30 seconds, it would give InsomniaX time to load.
Haha unfortunately, the downside to this is that when it's run as a LoginHook, since the script never finishes, I can't actually boot into my account anymore. :) The login lifecycle seems to wait for this script to finish before continuing to the desktop, so now it just hangs at a blue screen. – Craig Otis – 2012-07-21T18:24:56.147
Hmm. Can you try to
pmset noidle &
, that should put it into background and exit properly. – slhck – 2012-07-21T18:35:33.687Tried that, but it looks like when it's run in the background, it doesn't actually prevent the machine from sleeping. – Craig Otis – 2012-07-21T18:49:10.960
Ah hah! I think I got it by changing the contents of noidle.sh to
pmset -a disablesleep 1
. (Since the login hook is run as root, thesudo
can be left off.) Woo hoo! – Craig Otis – 2012-07-21T18:54:03.797