
Mar 22, 2016 Configuring Microsoft Sculpt Keyboard for Mac. I like the Microsoft Sculpt ergonomic keyboard, and here’s how I’ve configured it to work well on my Mac: In System Preferences-Keyboard select “Modifier Keys” and enter these settings – be sure you’ve selected “Microsoft Nano Transceiver” at the top: I’ve remapped Caps Lock to Escape using Seil.
Karabiner Configuration to Remap Surface Ergonomic Keyboard Alt and Windows Keys for Mac
private.xml
| <?xml version='1.0'?> |
| <root> |
| <devicevendordef> |
| <vendorname>Microsoft</vendorname> |
| <vendorid>0x045e</vendorid> |
| </devicevendordef> |
| <deviceproductdef> |
| <productname>SurfaceErgonomic</productname> |
| <productid>0x0817</productid> |
| </deviceproductdef> |
| <item> |
| <name>Remap Surface Ergonomic Alt to Command</name> |
| <appendix>This maps the Microsoft Surface Ergonomic's ALT Key to Command.</appendix> |
| <identifier>surface_ergonomic.alt_to_command</identifier> |
| <device_only>DeviceVendor::Microsoft, |
| DeviceProduct::SurfaceErgonomic</device_only> |
| <autogen> |
| --KeyToKey-- |
| KeyCode::OPTION_L, |
| KeyCode::COMMAND_L |
| </autogen> |
| <autogen> |
| --KeyToKey-- |
| KeyCode::OPTION_R, |
| KeyCode::COMMAND_R |
| </autogen> |
| </item> |
| <item> |
| <name>Remap Surface Ergonomic Windows to Option</name> |
| <appendix>This maps the Microsoft Surface Ergonomic's Windows Key to Option.</appendix> |
| <identifier>surface_ergonomic.windows_to_option</identifier> |
| <device_only>DeviceVendor::Microsoft, |
| DeviceProduct::SurfaceErgonomic</device_only> |
| <autogen> |
| --KeyToKey-- |
| KeyCode::COMMAND_L, |
| KeyCode::OPTION_L |
| </autogen> |
| <autogen> |
| --KeyToKey-- |
| KeyCode::COMMAND_R, |
| KeyCode::OPTION_R |
| </autogen> |
| </item> |
| </root> |
Karabiner Element
Mac Hhkb
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment