갑작스럽게 iOS 개발을 하게되어 맥북 프로를 쓰게되었다.
불편한게 한두가지가 아니다!
그중 마우스 내가 좀 헤맷던 마우스 4~5버튼 세팅을 포스팅 하겠씁니다.
Karabiner Elements 설치는 구글링 하세요!
~/.config/karabiner/karabiner.json
을 편집기로 오픈하면
"profiles": [
{
"complex_modifications": {
"parameters": {
"basic.to_delayed_action_delay_milliseconds": 500,
"basic.to_if_alone_timeout_milliseconds": 1000
},
"rules": []
요런 부분이 보이실겁니다.
이부분을
"rules": [
{
"description": "Mouse button4 → [ + command",
"manipulators": [
{
"from": {
"pointing_button": "button4"
},
"to": [
{
"key_code": "open_bracket",
"modifiers": [
"command"
]
}
],
"type": "basic"
}
]
},
{
"description": "Mouse button5 → ] + command",
"manipulators": [
{
"from": {
"pointing_button": "button5"
},
"to": [
{
"key_code": "close_bracket",
"modifiers": [
"command"
]
}
],
"type": "basic"
}
]
}
]
요렇게 바꾸시면 마우스 4~5버튼이 뒤로가기 앞으로가기로 작동됩니다.
MacOS가 장점도있는데 윈도우에 익숙한사람은 좀 불편한점이 많네요.