Apple Intelligence is now available on iPhone, iPad, and Mac!

📢 Newsroom Update

Apple introduces M4 Pro and M4 Max. Learn more >

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

M1 MacBook Air keyboard brightness

How do I off the keyboard illumination? Previously was using the MacBook Pro and there are the F5 and F6 to adjust the brightness or to off the light up. Thanks.

MacBook Air 13″, macOS 11.0

Posted on Dec 1, 2020 2:38 AM

Reply
Question marked as Top-ranking reply

Posted on Jan 1, 2021 1:20 AM

Create a new plist file in `~/Library/LaunchAgents` named `com.local.KeyRemapping.plist` and add the following code. Save the file and reboot. F5 and F6 will now work as keyboard brightness up/down keys.


<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Label</key>
    <string>com.local.KeyRemapping</string>
    <key>ProgramArguments</key>
    <array>
        <string>/usr/bin/hidutil</string>
        <string>property</string>
        <string>--set</string>
        <string>{"UserKeyMapping":[
            {
              "HIDKeyboardModifierMappingSrc": 0xC000000CF,
              "HIDKeyboardModifierMappingDst": 0xFF00000009
            },
            {
              "HIDKeyboardModifierMappingSrc": 0x10000009B,
              "HIDKeyboardModifierMappingDst": 0xFF00000008
            }
        ]}</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
</dict>
</plist>
17 replies

M1 MacBook Air keyboard brightness

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