Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Turning off MacBook Pro's display when using an external display?

Hello.


How does one turn off/disable MacBook Pros (2008's 10.5.8 and 2012's 10.8.4)' screen/display when connected to an external display (e.g., a HDTV with its HDMI)?


Thank you in advance. 🙂

Posted on Jul 7, 2013 3:39 PM

Reply
37 replies

Nov 14, 2017 8:21 AM in response to antdude

You could just mirror displays (selecting the external as the main display, to ensure the best picture quality for the external) and then turning the brightness right down to maximum on the internal (thereby effectively turning off the internal display). Sure, the display is technically still on, but you won't see it and you won't be using battery to power the backlight. You can even do this on battery, as opposed to clamshell (closed-display) mode, which requires the AC adapter to be plugged in.

Nov 16, 2013 6:14 PM in response to antdude

i think turning down the screen backlight is not what really matters here, what is truly of interest when driving big external screens is to keep the workload on the gpu low inorder to prevent temperature rise in the laptop.


as far as i observed, adding external displays increases the gpu workload significantly and with that comes temperature rise in the lapotop and increase in ventilator noise - and increased risk of component faillure due to high temperature in the laptop.


simply try connecting two external 27" screens and open some flash video on them - and on the built.in screen. then run a temperature monitoring software and watch temos rise to very high levels.


especially in maverick, due to its many additional background routines.


so the question to which i have not found a reply anywhere so far, is how to switch the macbook pro`s built-in screen in order to avoid gpu cycles being wasted on that screen while working with big extrenal screen(s).


hope that such a switch-off option exists or that apple comes up queickly with one.


the gpu is by far the hottest running processor in the macbooks and keeping its running temperature low is crucial to component aging, ventilator noise etc.


instructions for osx maverick welcome.

Mar 23, 2014 2:59 PM in response to antdude

I bought an rMBP not long ago and have been looking around for a solution for switching off the built-in screen while watching movies on a TV via HDMI.

For me dimming the brightness via an automated applescript and then turning it back on using the same script solved it.

I assigned a keyboard short cut to the script using the Scenario app from the AppStore. The full script is shown below. It additionally utilizes a self-made app called setKBBrightness to turn off keyboard backlight.

I can post the source code of that too if anyone's interested.


As far as I know dimming the screen doesn't actually turn it of. I use this with display mirroring on to avoid burn-in (due to having the same picture on the built-in screen for too long).



property brightnessLevel : 0.75

property currentLevel : 0

property KeybBrightnessLevel : "930"


ChangeBrightness(brightnessLevel) --Set this value between 0 and 1 to adjust brightness


on ChangeBrightness(BrightnessValue)


tell application "System Preferences"


--activate

set current pane to pane "com.apple.preference.displays"

end tell

tell application "System Events" to tell process "System Preferences"


tell radio button "Display" of tab group 1 of window "Built-in Retina Display" to if value is 0 then

repeat until value is 1


click

end repeat

end if


set currentLevel to value of slider 1 of group 1 of tab group 1 of window "Built-in Retina Display"


--display dialog currentLevel

if currentLevel is 0 then

tell slider 1 of group 1 of tab group 1 of window "Built-in Retina Display" to set value to BrightnessValue

else

tell slider 1 of group 1 of tab group 1 of window "Built-in Retina Display" to set value to 0


end if

end tell



--switching auto keyboard backlight on-off

tell application "System Preferences"


--activate

set current pane to pane "com.apple.preference.keyboard"

end tell


tell application "System Events" to tell process "System Preferences"


if currentLevel is 0 then


--switching on "Adjust keboard brightness in low light", that automatically gets the Keyb. backlight back on

if value of checkbox "Adjust keyboard brightness in low light" of tab group 1 of window "Keyboard" is 0 then

click checkbox "Adjust keyboard brightness in low light" of tab group 1 of window "Keyboard"

end if


else

if value of checkbox "Adjust keyboard brightness in low light" of tab group 1 of window "Keyboard" is 1 then

click checkbox "Adjust keyboard brightness in low light" of tab group 1 of window "Keyboard"

end if


--switching off keyboard backlight

delay 0.5

do shell script "~/Documents/for_scripts/setKBBrightness 0"

end if

end tell



tell application "System Preferences" to quit

if currentLevel is not 0 then tell application "System Events" to key code 124 using control down

end ChangeBrightness

Apr 24, 2014 5:59 AM in response to antdude

I recently upgraded from 10.6 to 10.9 and I couldn't find a way to shutoff the internal display while connected to an external display with the lid fully "open". This helps cool down the laptop a bit with better heat dissipation.


Running sudo nvram boot-args="iog=0x0" did not do the trick for me. Any other ideas I could try?


Will Apple provide a software option to turn off the internal display in this configuration in future releases?

Apr 24, 2014 12:54 PM in response to wlee777

Once you put those settings in you have to close the lid when you reboot or start up the computer. Once the login screen appears you can reopen it and the screen is off. Timing is everything. Reboot/startup immediately close the lid before the screen turns on, once the login screen appears you're good to open the lid.

May 23, 2014 1:17 AM in response to wlee777

What I've been doing in OS 10.9.2 with my MBA and Thunderbolt Display is to:


  1. have a hotcorner to turn of all screens or just press the shut down button that these days work like on the iPhone.
  2. then close the lid of your MB
  3. count to three
  4. open the lid
  5. VOILA - just the ThunderBolt starts up and I can still use the keyboard and touchpad.


BUT! Since today with 10.9.3 - this bug has been fixed 😟


Apple - please insert an option to turn of the MacBook display. This helps me personally when watching movies and using iPhoto and iMovie making photobooks or videos.

Turning off MacBook Pro's display when using an external display?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.