Created
March 22, 2013 15:25
-
-
Save arjunvenkat/5222129 to your computer and use it in GitHub Desktop.
KeyRemap4Macbook private.xml content
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<root> | |
<item> | |
<name>Remap Right Option to Hyper</name> | |
<appendix>OS X doesn't have a Hyper. This maps Right Option to Control + Shift + Option + Command.</appendix> | |
<identifier>space_cadet.right_option_to_hyper</identifier> | |
<autogen> | |
--KeyToKey-- | |
KeyCode::OPTION_R, | |
KeyCode::COMMAND_L, | |
ModifierFlag::OPTION_L | ModifierFlag::SHIFT_L | ModifierFlag::CONTROL_L | |
</autogen> | |
</item> | |
<item> | |
<name>Remap Ctrl+Option+Cmd+Down to Cmd+m </name> | |
<appendix>Creates minimize functionality for OSX consistent with Slate's maximize functionality</appendix> | |
<identifier>space_cadet.ctrl_option_cmd_to_cmd_m</identifier> | |
<autogen> | |
--KeyToKey-- | |
KeyCode::CURSOR_DOWN, | |
ModifierFlag::CONTROL_L | ModifierFlag::OPTION_L | ModifierFlag::COMMAND_L, | |
KeyCode::M, ModifierFlag::COMMAND_R | |
</autogen> | |
</item> | |
</root> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment