LoginSignup
0
1

More than 5 years have passed since last update.

【Mac,Karabiner-Elements】launchpad+英数入力でサクサクアプリ検索

Last updated at Posted at 2018-11-08

やること

  • launchpad開いたときに英数入力モードに

環境

  • MacBook 12インチ
  • JIS配列

うざい日本語入力

Launchpadを使ってサクッとアプリを立ち上げたいのに.....
image.png

image.png
image.png

うおおおおおおおおおおおい

ってならないための設定

{
    "title": "英数モードに切り替え",
    "rules": [
        {
            "description": "launchpad開いた時",
            "manipulators": [
            {
                "type": "basic",
                "from": {
                "key_code": "launchpad"
                },
                "to": [
                { "key_code": "launchpad" },
                { "key_code" : "lang2" }
                ]
            }
            ]
        }
    ]
}

メモ

  • トラックパッドで開いたときは適用されません

おまけ

  • cmmand+l時も英数入力に切り替わるようにすると結構便利
        {
            "description": "command+l時に英数入力にする(url入力)",
            "manipulators": [
            {
                "type": "basic",
                "from": {
                "key_code": "l",
                "modifiers": {
                    "mandatory":["left_command"]
                }
                },
                "to": [
                {
                    "key_code": "l",
                    "modifiers": "left_command"
                },
                { "key_code" : "lang2" }
                ]
            }
            ]
        }

参考

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1