블투키보드와 매직마우스의 조합이 드디어 손에 통증 신호가 슬슬와서 회사에 굴러댕기는 Microsoft Curve 3000를 테스트 해봤다. 타이핑을 해보니 확실히 손목은 편한데 스페이스 양옆으로 떠억 하니 있는. '한자', '한영' 키.
시스템 환경설정에서 Modifier 키만 바꿔서 써보려고 했는데 도저히 안되겠어서 검색질 시작. KeyRemap4Macbook 을 이용해서 하기로 결정. 구글 검색을 좀 더 해보니 Github에서 private.xml을 작성한 예제 프로젝트를 발견. 이걸 참고해서 private.xml 파일을 아래와 같이 키맵핑을 만들어 주니 꽤나 기존 무선 블투 키보드의 배치와 얼추 비슷하게 쓸 수 있게됬다:
<root> <item> <name>For Microsoft Curve 3000 keyboard</name> <item> <name>Make Hanja Key to Command_L</name> <item> <name>Hanja to Command_L</name> <identifier>remap.hanja2commandR</identifier> <device_not>DeviceVendor::APPLE_COMPUTER</device_not> <autogen>__KeyToKey__ KeyCode::JIS_EISUU, KeyCode::COMMAND_L</autogen> </item> </item> <item> <name>Make Hanyoung Key to Command_R</name> <item> <name>Hanyoung to Command_R</name> <identifier>remap.hanyoung2commandR</identifier> <device_not>DeviceVendor::APPLE_COMPUTER</device_not> <autogen>__KeyToKey__ KeyCode::JIS_KANA, KeyCode::COMMAND_R</autogen> </item> <item> <nlll>Control Key to Function Key</name> <item> <name>Control Key to Function Key</name> <identifier>remap.control_L2Fn</identifier> <device_not>DeviceVendor::APPLE_COMPUTER</device_not> <autogen>__KeyToKey__ KeyCode::Control_L, KeyCode::COMMAND_R</autogen> </item> </item> </item> </root>
다만 Fn키는 아예 이벤트가 들어가질 않아서 맵핑을 할수 없음.











