在使用Manjaro時(shí)候,安裝了fcitx-rime的,可是打出來(lái)的都是繁體字,雖然快捷鍵F4可以切換,但是每次啟動(dòng)要手動(dòng)切換很麻煩。
搜索找到教程:
配置文件路徑 ~/.config/ibus/rime/build/luna_pinyin.schema.yaml
找到:
switches: - name: ascii_mode reset: 0 states: ["中文", "西文"] - name: full_shape states: ["半角", "全角"] - name: simplification states: ["漢字", "漢字"] - name: ascii_punct states: ["。,", ".,"]
在simplification的地方添加一個(gè)reset,指定重置成簡(jiǎn)體中文,改成這樣:
switches: - name: ascii_mode reset: 0 states: ["中文", "西文"] - name: full_shape states: ["半角", "全角"] - name: simplification reset: 1 states: ["漢字", "漢字"] - name: ascii_punct states: ["。,", ".,"]






