V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
nzxred07
V2EX  ›  Apple

Intel Mac 如何能像 M 芯片 Mac 一样使用 FN 键 切换语言呀

  •  
  •   nzxred07 · 301 天前 · 1325 次点击
    这是一个创建于 301 天前的主题,其中的信息可能已经有所发展或是发生改变。

    M 芯片的 Mac 键盘最左下角 FN 键(地球图标),可以设置成快速切换输入法, 另一台 Intel Mac 我是用 Caps 键切换,但是每次从 M 芯片 切换到 Intel , 老是习惯性按错,使用体验很分割。

    下载了一个什么 karabiner-Elements 的软件, 但怎么也找不到能修改 FN 键的功能? 请各位大佬指教。万分感激🙏。

    10 条回复    2023-07-03 15:20:52 +08:00
    wsjjacky
        1
    wsjjacky  
       301 天前
    karabiner-Elements 没用过,你也可以试试 better touch tool ,非常强大,想改什么键就改什么键:)
    dingdangnao
        2
    dingdangnao  
       301 天前
    啊?
    系统设置-键盘-按下 fn 键时-更改输入法
    nzxred07
        3
    nzxred07  
    OP
       301 天前
    我的 Intel Mac 用的是 Mojave ,系统设置里好像没有更改 Fn 键的选项
    laoyur
        4
    laoyur  
       301 天前
    所以你需要的其实是升级 os ?
    nzxred07
        5
    nzxred07  
    OP
       301 天前
    自己搞定了,Caps 键切换,然后 FN 键 映射 Caps 。无需升级 OS
    Aaron325
        6
    Aaron325  
       300 天前
    fn 太边角了,不习惯按啊
    ruidoBlanco
        7
    ruidoBlanco  
       300 天前
    karabiner ,雙擊左 shift 切換中英文,雙擊右 shift 切換簡繁體。
    halowang1991
        8
    halowang1991  
       300 天前
    我是 karabiner, 单击右 option 切换语言, 很爽
    halowang1991
        9
    halowang1991  
       300 天前
    我的配置 json:

    ```json
    {
    "global": {
    "check_for_updates_on_startup": true,
    "show_in_menu_bar": false,
    "show_profile_name_in_menu_bar": false,
    "unsafe_ui": false
    },
    "profiles": [
    {
    "complex_modifications": {
    "parameters": {
    "basic.simultaneous_threshold_milliseconds": 50,
    "basic.to_delayed_action_delay_milliseconds": 500,
    "basic.to_if_alone_timeout_milliseconds": 1000,
    "basic.to_if_held_down_threshold_milliseconds": 500,
    "mouse_motion_to_scroll.speed": 100
    },
    "rules": [
    {
    "manipulators": [
    {
    "description": "capslock -> 切换窗口",
    "from": {
    "key_code": "caps_lock"
    },
    "to": [
    {
    "key_code": "tab",
    "modifiers": "left_command"
    }
    ],
    "type": "basic"
    }
    ]
    },
    {
    "manipulators": [
    {
    "description": "右 option -> 切换输入法",
    "from": {
    "key_code": "right_option"
    },
    "to": [
    {
    "key_code": "spacebar",
    "modifiers": "left_control"
    }
    ],
    "type": "basic"
    }
    ]
    }
    ]
    },
    "devices": [
    {
    "disable_built_in_keyboard_if_exists": false,
    "fn_function_keys": [],
    "identifiers": {
    "is_keyboard": true,
    "is_pointing_device": false,
    "product_id": 835,
    "vendor_id": 1452
    },
    "ignore": false,
    "manipulate_caps_lock_led": true,
    "simple_modifications": [],
    "treat_as_built_in_keyboard": false
    },
    {
    "disable_built_in_keyboard_if_exists": false,
    "fn_function_keys": [],
    "identifiers": {
    "is_keyboard": false,
    "is_pointing_device": true,
    "product_id": 835,
    "vendor_id": 1452
    },
    "ignore": true,
    "manipulate_caps_lock_led": false,
    "simple_modifications": [],
    "treat_as_built_in_keyboard": false
    }
    ],
    "fn_function_keys": [
    {
    "from": {
    "key_code": "f1"
    },
    "to": [
    {
    "consumer_key_code": "display_brightness_decrement"
    }
    ]
    },
    {
    "from": {
    "key_code": "f2"
    },
    "to": [
    {
    "consumer_key_code": "display_brightness_increment"
    }
    ]
    },
    {
    "from": {
    "key_code": "f3"
    },
    "to": [
    {
    "apple_vendor_keyboard_key_code": "mission_control"
    }
    ]
    },
    {
    "from": {
    "key_code": "f4"
    },
    "to": [
    {
    "apple_vendor_keyboard_key_code": "spotlight"
    }
    ]
    },
    {
    "from": {
    "key_code": "f5"
    },
    "to": [
    {
    "consumer_key_code": "dictation"
    }
    ]
    },
    {
    "from": {
    "key_code": "f6"
    },
    "to": [
    {
    "key_code": "f6"
    }
    ]
    },
    {
    "from": {
    "key_code": "f7"
    },
    "to": [
    {
    "consumer_key_code": "rewind"
    }
    ]
    },
    {
    "from": {
    "key_code": "f8"
    },
    "to": [
    {
    "consumer_key_code": "play_or_pause"
    }
    ]
    },
    {
    "from": {
    "key_code": "f9"
    },
    "to": [
    {
    "consumer_key_code": "fast_forward"
    }
    ]
    },
    {
    "from": {
    "key_code": "f10"
    },
    "to": [
    {
    "consumer_key_code": "mute"
    }
    ]
    },
    {
    "from": {
    "key_code": "f11"
    },
    "to": [
    {
    "consumer_key_code": "volume_decrement"
    }
    ]
    },
    {
    "from": {
    "key_code": "f12"
    },
    "to": [
    {
    "consumer_key_code": "volume_increment"
    }
    ]
    }
    ],
    "name": "Default profile",
    "parameters": {
    "delay_milliseconds_before_open_device": 1000
    },
    "selected": true,
    "simple_modifications": [],
    "virtual_hid_keyboard": {
    "country_code": 0,
    "indicate_sticky_modifier_keys_state": true,
    "mouse_key_xy_scale": 100
    }
    }
    ]
    }

    ```
    20015jjw
        10
    20015jjw  
       300 天前 via iPhone
    怎么会有人专门按 fn 啊…
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5462 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 33ms · UTC 08:44 · PVG 16:44 · LAX 01:44 · JFK 04:44
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.