Skip to content

Instantly share code, notes, and snippets.

@mutewinter
Created October 5, 2013 23:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mutewinter/6847308 to your computer and use it in GitHub Desktop.
Save mutewinter/6847308 to your computer and use it in GitHub Desktop.
Disable SysDiagnose Shortcuts with KeyRemap4MacBook for Hyper Key Binding.
<?xml version="1.0"?>
<root>
<item>
<name>Disable Sysdiagnose Dot Key</name>
<appendix>Disable Sysdiagnose Key</appendix>
<identifier>private.disable_sysdiagnosedot</identifier>
<autogen>
--KeyToKey--
KeyCode::DOT,
ModifierFlag::OPTION_L | ModifierFlag::SHIFT_L | ModifierFlag::CONTROL_L | ModifierFlag::COMMAND_L,
KeyCode::VK_NONE
</autogen>
</item>
<item>
<name>Disable Sysdiagnose Comma Key</name>
<appendix>Disable Sysdiagnose Key</appendix>
<identifier>private.disable_sysdiagnosecomma</identifier>
<autogen>
--KeyToKey--
KeyCode::COMMA,
ModifierFlag::OPTION_L | ModifierFlag::SHIFT_L | ModifierFlag::CONTROL_L | ModifierFlag::COMMAND_L,
KeyCode::VK_NONE
</autogen>
</item>
<item>
<name>Disable Sysdiagnose Foward Slash Key</name>
<appendix>Disable Sysdiagnose Key</appendix>
<identifier>private.disable_sysdiagnose_forward_slash</identifier>
<autogen>
--KeyToKey--
KeyCode::SLASH,
ModifierFlag::OPTION_L | ModifierFlag::SHIFT_L | ModifierFlag::CONTROL_L | ModifierFlag::COMMAND_L,
KeyCode::VK_NONE
</autogen>
</item>
</root>
@skovtunenko
Copy link

With new versions of Karabiner - this config is no longer valid :(

@zachshulman
Copy link

any alternatives?

@mikebobroski
Copy link

@zachshulman: I found a config that works with Karabiner Elements here: pqrs-org/Karabiner-Elements#1107 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment