Created
July 22, 2016 19:43
-
-
Save ipetepete/8581d2e521a82f4e94d9207fdd68452a to your computer and use it in GitHub Desktop.
Karabiner Consumer Key Remapping
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>Plus Volume Up</name> | |
<identifier>private.plus_and_fn_volume_up</identifier> | |
<autogen> | |
--KeyToConsumer-- | |
KeyCode::EQUAL, ModifierFlag::CONTROL_L, | |
ConsumerKeyCode::VOLUME_UP | |
</autogen> | |
<autogen> | |
--KeyToConsumer-- | |
KeyCode::EQUAL, ModifierFlag::CONTROL_R, | |
ConsumerKeyCode::VOLUME_UP | |
</autogen> | |
</item> | |
<item> | |
<name>Minus Volume Down</name> | |
<identifier>private.minus_and_control_volume_down</identifier> | |
<autogen> | |
--KeyToConsumer-- | |
KeyCode::MINUS, ModifierFlag::CONTROL_L, | |
ConsumerKeyCode::VOLUME_DOWN | |
</autogen> | |
<autogen> | |
--KeyToConsumer-- | |
KeyCode::MINUS, ModifierFlag::CONTROL_R, | |
ConsumerKeyCode::VOLUME_DOWN | |
</autogen> | |
</item> | |
<item> | |
<name>Play/Pause :: CTL + Backspace</name> | |
<identifier>private.bksp_ctl_play_pause</identifier> | |
<autogen> | |
--KeyToConsumer-- | |
KeyCode::DELETE, ModifierFlag::CONTROL_L, | |
ConsumerKeyCode::MUSIC_PLAY | |
</autogen> | |
<autogen> | |
--KeyToConsumer-- | |
KeyCode::DELETE, ModifierFlag::CONTROL_R, | |
ConsumerKeyCode::MUSIC_PLAY | |
</autogen> | |
</item> | |
</root> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment