rux616 / karabiner-windows-mode

Karabiner-Elements complex ruleset to make using macOS friendlier by enabling common keyboard functionality used in Linux and Windows.
The Unlicense
331 stars 65 forks source link

Language input change #50

Closed GeorgeV220 closed 3 weeks ago

GeorgeV220 commented 3 years ago

Add alt + shift to change input language

bpeychev commented 3 weeks ago

This is the karabiner custom complex modification rule I use:

{
    "description": "Map Alt+Shift to Ctrl+Shift+Space to change input language.",
    "manipulators": [
        {
            "from": {
                "key_code": "left_shift",
                "modifiers": { "mandatory": ["left_alt"] }
            },
            "to": [
                {
                    "key_code": "spacebar",
                    "modifiers": ["left_control", "left_shift"]
                }
            ],
            "type": "basic"
        },
        {
            "from": {
                "key_code": "right_shift",
                "modifiers": { "mandatory": ["left_alt"] }
            },
            "to": [
                {
                    "key_code": "spacebar",
                    "modifiers": ["left_control", "left_shift"]
                }
            ],
            "type": "basic"
        }
    ]
}
GeorgeV220 commented 3 weeks ago

This is the karabiner custom complex modification rule I use:

{
    "description": "Map Alt+Shift to Ctrl+Shift+Space to change input language.",
    "manipulators": [
        {
            "from": {
                "key_code": "left_shift",
                "modifiers": { "mandatory": ["left_alt"] }
            },
            "to": [
                {
                    "key_code": "spacebar",
                    "modifiers": ["left_control", "left_shift"]
                }
            ],
            "type": "basic"
        },
        {
            "from": {
                "key_code": "right_shift",
                "modifiers": { "mandatory": ["left_alt"] }
            },
            "to": [
                {
                    "key_code": "spacebar",
                    "modifiers": ["left_control", "left_shift"]
                }
            ],
            "type": "basic"
        }
    ]
}

Your response was like an angel descending from the heavens, delivering a blessing I never expected — four years later, no less!