Шифт левый - латынянская,
Шифт правый - русская.
Код для Karabiner Elements
{
"title": "Left Shift -> en, Right Shift -> ru",
"rules": [
{
"description": "Left Shift -> en",
"manipulators": [
{
"to_if_alone": [
{
"select_input_source": {
"language": "en"
}
}
],
"from": {
"key_code": "left_shift"
},
"to": [
{
"key_code": "left_shift"
}
],
"type": "basic"
}
]
},
{
"description": "Right Shift -> ru",
"manipulators": [
{
"to_if_alone": [
{
"select_input_source": {
"language": "ru"
}
}
],
"from": {
"key_code": "right_shift"
},
"to": [
{
"key_code": "right_shift"
}
],
"type": "basic"
}
]
}
]
}