🏠
Karabiner-Elements設定集
MacでSolitonSecureDesktopを使う
コロナによりSoliton社が出しているSecureDesktopというものが流行っている
MacOS、USキーボードでつなぐと英数かな変換などうまく動かない
だがしかし、以下コピペすればコピペとかな変換は上手く動きました
'manipulators'に'from'を2個書けない(らしい)のがハマりポイント
"rules": [
{
"description": "(SecureDesktopのみ)左コマンドキーを押したらCtrlキー",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^jp\\.co\\.soliton\\.securedesktop\\.mac\\.client$"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "left_command"
},
"to": [
{
"key_code": "left_control"
}
],
"type": "basic"
}
]
},
{
"description": "(SecureDesktopのみ)右コマンドキーを押したらかな変換キー",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^jp\\.co\\.soliton\\.securedesktop\\.mac\\.client$"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "right_command"
},
"to": [
{
"key_code": "grave_accent_and_tilde"
}
],
"type": "basic"
}
]
},
Discussion