えぐろぐ

https://twitter.com/eggpogg

Sandsをkarabiner-elementsに変更をした

BigSur にしてから SandS アプリが使えなかったので、
Karabiner-Elements に SandSの機能だけ移行した

1. caskのインストール方法が変わったので気をつける

brew install --cask karabiner-elements

2. 以下のコードをここにコピー

vim ~/.config/karabiner/assets/complex_modifications/sands.json

こちらのコードをコピーさせていただいた。ありがとうございます :bow: http://homaju.hatenablog.com/entry/20180116

"title": "SandS"
"rules": [
{
    "manipulators": [
    {
        "description": "Change spacebar to left_shift. (Post spacebar if pressed alone)",
            "from": {
                "key_code": "spacebar",
                "modifiers": {
                    "optional": [
                        "any"
                    ]
                }
            },
            "to": [
            {
                "key_code": "left_shift"
            }
            ],
            "to_if_alone": [
            {
                "key_code": "spacebar"
            }
            ],
            "type": "basic"
    }
    ]
}
]

3. 設定で enable にするだけ