Skip to content

Instantly share code, notes, and snippets.

@kn1kn1
Last active August 23, 2023 00:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kn1kn1/9fa9f17efd6b5d1370998d35c50f6b95 to your computer and use it in GitHub Desktop.
Save kn1kn1/9fa9f17efd6b5d1370998d35c50f6b95 to your computer and use it in GitHub Desktop.
Spotlight メニューのキーボードショートカットの変更

Spotlight メニューのキーボードショートカットの変更

Spotlight を起動するキーボードショートカットをctrl-英数にする方法

~/Library/Preferences/com.apple.symbolichotkeys.plist

64のvalue - parameters - item 149(スペースキー)から102(英数キー)に変更する

com apple symbolichotkeys plist

@kn1kn1
Copy link
Author

kn1kn1 commented Aug 23, 2023

value - parameters - item 149のまま、item 032でも行けた。

$ defaults read com.apple.symbolichotkeys
{
    AppleSymbolicHotKeys =     {
        10 =         {
            enabled = 1;
:
(snip)
:
        64 =         {
            enabled = 1;
            value =             {
                parameters =                 (
                    32,
                    49,
                    262144
                );
                type = standard;
            };
        };

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment