Last active
August 29, 2015 14:07
-
-
Save bjcull/899334c8af37446ab12f to your computer and use it in GitHub Desktop.
Key remapping for running windows on a mac. AutoHotKey on Windows side, Karabiner on Mac side.
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
; The below line is for debugging key presses in the key history. | |
; #InstallKeybdHook | |
; Turn my useless right alt key into a rad delete key | |
RAlt::Delete | |
; Capture the custom remapped playback keys from the mac keyboard remapper | |
<+<^F7::Send,{Media_Prev} | |
<+<^F8::Send,{Media_Play_Pause} | |
<+<^F9::Send,{Media_Next} |
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>Playback Controls to Ctrl+Shift+F(X)</name> | |
<identifier>private.playback_to_function</identifier> | |
<autogen>__ConsumerToKey__ ConsumerKeyCode::MUSIC_PREV, KeyCode::F7, ModifierFlag::CONTROL_L, ModifierFlag::SHIFT_L</autogen> | |
<autogen>__ConsumerToKey__ ConsumerKeyCode::MUSIC_PLAY, KeyCode::F8, ModifierFlag::CONTROL_L, ModifierFlag::SHIFT_L</autogen> | |
<autogen>__ConsumerToKey__ ConsumerKeyCode::MUSIC_NEXT, KeyCode::F9, ModifierFlag::CONTROL_L, ModifierFlag::SHIFT_L</autogen> | |
</item> | |
<!-- ============================================================ --> | |
</root> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment