# Enable Sidecar for Old Devices

Edit - 2019.08.06

Methods mentioned in this post is no longer working in the latest beta version of macOS (10.15 Beta (19A526h)).

Edit - 2019.07.05

  • Add some tips.

The public beta of iPadOS and macOS Catalina is currently live for everyone now. You may go to Apple website (opens new window) for more detail info about public beta.

The Sidecar is a hot feature which let you connect your iPad to Mac wireless or wired. But this feature is actually limited to newer Apple devices. My Macbook Air Early 2015 was not showing the "Sidecar" icon in System Preference, neither my iPad Pro 11" showing up in my MBA's AirDisplay menu.

Fortunately, we can manually enable the Sidecar support on older devices with terminal commands.

# Enable Sidecar with Terminal Commands

# TL;DR for One-liner

defaults write com.apple.sidecar.display AllowAllDevices -bool true; defaults write com.apple.sidecar.display hasShownPref -bool true; open /System/Library/PreferencePanes/Sidecar.prefPane
1

Then logout and re-login your macbook.

# Commands Explain

My devices:

  • MacBook Air (13-inch, Early 2015)
    • macOS Catalina 10.15 Beta (19A487m)
  • iPad Pro 11" (MTXP2TA/A)
    • iPadOS 13.0 (17A5508m)

I've tried the following commands and successfully connect my iPad Pro to my Macbook Air.

Photo

First, open terminal on your macbook and use this command:

defaults write com.apple.sidecar.display AllowAllDevices -bool true
1

The command is quite self-explained that it will enable Sidecar on all devices.

Second, the command:

defaults write com.apple.sidecar.display hasShownPref -bool true
1

This will enable the icon in your System Preferences.

Sidecar Preference Icon

And the last one is optional:

open /System/Library/PreferencePanes/Sidecar.prefPane
1

This command will immediately open the Sidecar preference.

Sidecar Preference

And now you have to logout and re-login your Macbook or you might find that your iPad is not showing in the preference.

# Quick Review about Sidecar

The Sidecar feature is currently in beta. Many feature feels buggy right now. As I notice it's quite laggy even using USB-C wired connection. And the graphic is glitching on iPad display. Hope these issues will be solved and improved while official release.

TIP

To use the Sidecar, you have to enable the Bluetooth on both Macbook and iPad no matter you are connecting Sidecar with wired or wireless.

For wireless connection, you also have to enable WiFi on both devices. The WiFi does not need the Internet connection to make Sidecar work.

# References

Last Updated: 9/10/2019, 9:02:10 AM