Skip to content

Instantly share code, notes, and snippets.

@llamakko
Last active March 11, 2016 07:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save llamakko/3a99304ea50de0734217 to your computer and use it in GitHub Desktop.
Save llamakko/3a99304ea50de0734217 to your computer and use it in GitHub Desktop.
Karabiner用設定ファイル
<?xml version="1.0"?>
<root>
<appdef>
<appname>MicrosoftRDC</appname>
<equal>com.microsoft.rdc.mac</equal>
</appdef>
<item>
<name>Microsoft Remote Desktop App v8.0.26+</name>
<identifier>private.Microsoft_rdc_Custom</identifier>
<!-- Microsoft Remote Desktopのみを対象にする -->
<only>MicrosoftRDC</only>
<!-- 英数キー(OS Xでは Karabiner + Seil でCapsLockキーに変換済み)を 左Alt + ` に置き換え -->
<autogen>
__KeyToKey__
KeyCode::JIS_EISUU,
KeyCode::BACKQUOTE, ModifierFlag::OPTION_L
</autogen>
<!-- 左Controlキーを左Commandキー(Windowsでは左Windowsキー)に置き換え -->
<autogen>
__KeyToKey__
KeyCode::CONTROL_L,
KeyCode::COMMAND_L
</autogen>
<!-- 左Commandキーを左Ctrlキーに置き換え -->
<autogen>
__KeyToKey__
KeyCode::COMMAND_L,
KeyCode::CONTROL_L
</autogen>
</item>
</root>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment