How do i lock my retina macbook pro ?
On windows 7 i use "Windows" + "L" keys.
If you just want to lock the screen:
Keychain Access>Preferences>General>Show keychain status in menu bar
Then just select the lock on the top right corner of the screen then choose lock screen.
If you just want to lock the screen:
Keychain Access>Preferences>General>Show keychain status in menu bar
Then just select the lock on the top right corner of the screen then choose lock screen.
If you just want to lock the screen:
Keychain Access>Preferences>General>Show keychain status in menu bar
Then just select the lock on the top right corner of the screen then choose lock screen.
Nice. Is it possible to get a short key to this lock?
What makes this different than just setting the option to require a password from Sleep/Screensaver? Just curious.
That's what I have, and I set a hot corner to activate the screensaver. Soon as I do that, the screen is locked.
Nice. Is it possible to get a short key to this lock?
I don't think so, no.
Sleep, as the name implies, makes the computer sleep. That stops tasks you're still doing (e.g. listening to music, backing things up, downloading things in the background, etc). Might be improved with Power Nap a bit though.
Screen lock keeps everything still running- all it does is lock the screen.
The shortcut is ctrl+shift+eject, unfortunately the MBPr and MBA don't have an optical drive, so dotn have the eject key! so the shortcut is useless on these machines.
yeah i do not have an eject button... on the mac book pro retina.
Ah, but mine is set not to sleep when plugged in. I also have the NoSleep app. Music, webpages, apps, etc all stay running when the screensaver is activated.
Require password when from Sleep/Screensaver is the option name in Settings, I wasn't referring to the action of actually putting the computer to sleep.
The power button works fine in place of the eject button. control+shift+power on MBPr and Air.
The power button works fine in place of the eject button. control+shift+power on MBPr and Air.
Instead of doing finger gymnastics, you might consider writing a quick AppleScript to do it, and then save that AS as an executable. The binary you want to call from the AS is:
/System/Library/Frameworks/ScreenSaver.framework/Resources/ScreenSaverEngine.app/Contents/MacOS/ScreenSaverEngine
When you "Save As..." in the AS editor, choose the "Application" file format, and it'll compile it and write the entire .app/ directory structure. Then just put that anywhere in your path. Name it something short; mine's called ss.app.
When I want to lock my screen:
- CMD-SPACE to open Spotlight
- ss[ENTER]
Bang, screen locked.
jas
Cool.
It did not like that code.. i would like such a solution!![]()
tell application "/System/Library/Frameworks/ScreenSaver.framework/Resources/ScreenSaverEngine.app/Contents/MacOS/ScreenSaverEngine" to open
This actually works as he described. Paste this into the script editor
tell application "/System/Library/Frameworks/ScreenSaver.framework/Resources/ScreenSaverEngine.app/Contents/MacOS/ScreenSaverEngine" to activate
The power button works fine in place of the eject button. control+shift+power on MBPr and Air.
Ah I see. That would mean the screensaver runs, right?
Using the lock screen function results in a black (off) screen. Saves a bit of battery if not plugged in.
That's weird, I tried the Keychain screen lock that was mentioned and it also turned my screensaver on, albeit the wrong screensaver that I had set.
Either way, it looks like, works as long as their is a password prompt for access. I think its basically the same thing, just that there are different ways to get to it. One downside to my mentioned procedure is that if you place your mouse cursor in that selected hot corner on accident, your screensaver will activate.
Thanks for the AppleScript, and I apologize for not including it in my original post... duh.
Compile that, then test it from the AS editor. It should fire the screen lock right up for you, forcing you to enter your password to unlock it. "Save As..." an "Application", and then make sure that .app is somewhere where Spotlight can find it.
Easy peazy.
ETA: You'll have more luck telling the application to "activate" instead of "open". So in the AS editor:
Code:tell application "/System/Library/Frameworks/ScreenSaver.framework/Resources/ScreenSaverEngine.app/Contents/MacOS/ScreenSaverEngine" to activate
jas
Not on my rMBP it doesn't![]()
The power button works fine in place of the eject button. control+shift+power on MBPr and Air.