맥용 카라비너에서 하이퍼키 매핑하려면 변형버전을 사용하면 되는 것 같은데
다운받을 사이트가 없어진 듯 하여...
코드를 수정하면 되지 않을까 하여 코드 편집을 살짝 해봤습니다
Karabiner Elements 에 룰을 추가하여 하이퍼키 조합을 Caps Lock 에 사용가능하지만
세세하게 원하는 모양으로 수정 가능하게 하기 위하여 손을 대봤습니다
요건 기본 룰 추가로 하이퍼키를 Caps Lock 에 매핑
Complex Modification 설정은
~/.config/karabiner/karabiner.json
Simple Modification 혹은 기타 설정은
/Applications/Karabiner-Elements.app/Contents/Resources/simple_modifications.json
(앱 우측 마우스 클릭으로 Show Packages Contents 를 눌러서 해당 경로로 이동하면 됩니다)
수정하기전에 백업 필수!!
이하 삽입 코드
===========
,
{
"label": "hyper ('control'+'option'+'command'+'shift')",
"data": {
"key_code": "left_control",
"modifiers": [
"left_option",
"left_command",
"left_shift"
]
}
},
{
"label": "hyper -command ('control'+'option'+'shift')",
"data": {
"key_code": "left_control",
"modifiers": [
"left_option",
"left_shift"
]
}
},
{
"label": "hyper -shift ('control'+'option'+'command')",
"data": {
"key_code": "left_control",
"modifiers": [
"left_option",
"left_command"
]
}
},
{
"label": "hyper -control ('option'+'command'+'shift')",
"data": {
"key_code": "left_option",
"modifiers": [
"left_command",
"left_shift"
]
}
},
{
"label": "hyper -option ('control'+'command'+'shift')",
"data": {
"key_code": "left_control",
"modifiers": [
"left_command",
"left_shift"
]
}
}
===========


다 잘 되었다면 Karabiner 재실행 후 키를 추가하면 To key 맨 밑에
추가한 다양한 하이퍼키 목록이 나옵니다
'맥' 카테고리의 다른 글
[MAC] Numbers (넘버스) 맥용 엑셀 - 값만 붙여넣기 (0) | 2023.01.12 |
---|---|
맥에서 파일 생성일 수정일 날짜 바꾸기 (0) | 2022.04.22 |
맥에서 동영상 자막 추출 방법 (0) | 2022.03.01 |
맥에서 한영변환 지정키 설정하기 (0) | 2022.03.01 |
ASCII Code 아스키 코드표 (0) | 2021.09.28 |
댓글