Turn off USB power when closing MacBook lid

I have a USB-powered cooling pad under my MacBook Pro. When I close the lid to put my MacBook to sleep, I would like the cooling pad to turn off. In other words, I would like the MacBook to cut power to the USB port that the cooling pad is plugged into, or alternatively, both USB ports. Anyone know if this is possible?

I notice that the same question has been asked for Windows 7.


According to Apple Computers and Displays: Powering peripherals through USB the only way to turn off power to the USB ports is to turn off the Mac, power will remain while the Mac is sleeping.

If your Apple computer or display is powered off, no power will be provided.

A work around for this is changing what your Mac Does when you close the lid. You can reconfigure your MacBook to go into a different safe sleep mode when you close the lid, as opposed to normal sleep. This is very similar to the hibernate feature available for Windows PC and would result in USB power being off.

The only con is that you would have to press the power button to start your mac when you open it. And it would take more time to get the Mac back to where you left off at, as it reloads the contents of RAM from disk.

You can change your Macs sleep-mode as indicated in Set newer portable Macs' sleep mode provided by MacWorld.

Check the current setup

$ pmset -g | grep hibernatemode

which mode is which:

0 - Old style sleep mode, with RAM powered on while sleeping, safe sleep disabled, and super-fast wake.

1 - Hibernation mode, with RAM contents written to disk, system totally shut down while “sleeping,” and slower wake up, due to reading the contents of RAM off the hard drive.

3 - The default mode on machines introduced since about fall 2005. RAM is powered on while sleeping, but RAM contents are also written to disk before sleeping. In the event of total power loss, the system enters hibernation mode automatically.

5 - This is the same as mode 1, but it’s for those using secure virtual memory (in System Preferences -> Security).

7 - This is the same as mode 3, but it’s for those using secure virtual memory.

It appears that sleep mode 1 would enable your USB ports to be powered off when closing the lid of the MacBook.

Change the sleep mode setting

sudo pmset -a hibernatemode 1

I know this is a really old post, just thought this would be useful to others;

On your Mac model / macOS version, type "man pmset" in Terminal to see what the values are for your Mac - seems not all models and/or macOS versions adhere to the same numbering scheme.

hibernatemode supports values of 0, 3, or 25.

Default: hibernatemode, standby and autopoweroff are all set to 0.

hibernatemode = 0 default on desktops. The system will not back memory up to persistent storage. The system must wake from the contents of memory; the system will lose context on power loss. This is, historically, plain old sleep.

hibernatemode = 3 default on portables. The system will store a copy of memory to persistent storage (the disk), and will power memory during sleep. The system will wake from memory, unless a power loss forces it to restore from hibernate image.

hibernatemode = 25 is only settable via pmset. The system will store a copy of memory to persistent storage (the disk), and will remove power to memory. The system will restore from disk image. If you want "hibernation" - slower sleeps, slower wakes, and better battery life, you should use this setting.

On my MacPro (2013 model) both values 3 and 25 will powerdown the backlight of my (non-Apple) mouse (Logitech) and keyboard (Havit). The default settings would keep the backlights on - which can be quite annoying.

Boot time (64Gb RAM) with "hibernatemode = 3" is very fast, "hibernatemode = 25" only a fraction slower.