顯示具有 輸入法 標籤的文章。 顯示所有文章
顯示具有 輸入法 標籤的文章。 顯示所有文章

2025年11月29日 星期六

RIME 輸入法的設定

 C:\Users\wangjenmin\AppData\Roaming\Rime 資料夾裡的 default.custom.yaml 檔案,加入以下藍色文字,可以設定候選字有九個,也可以關閉 shift 的切換中英文的動作。

customization:
  distribution_code_name: Weasel
  distribution_version: 0.17.4
  generator: "Rime::SwitcherSettings"
  modified_time: "Sat Nov 29 11:12:31 2025"
  rime_version: 1.13.1
patch:
  "menu/page_size": 9
  schema_list:
    - {schema: scj6}
  ascii_composer/switch_key: {
    Caps_Lock: noop, 
    Control_L: noop, 
    Control_R: noop, 
    Eisu_toggle: clear, 
    Shift_L: noop, 
    Shift_R: noop
  }

 

C:\Users\wangjenmin\AppData\Roaming\Rime 資料夾裡的 scj6.schema.yaml ,底下藍色的設定值改為 1 ,可以預設為 英文 模式。

 

# Rime schema settings
# encoding: utf-8

schema:
  schema_id: scj6
  name: 快速倉頡
  version: "0.9"
  author:
    - 麥志洪 <makchehu@netvigator.com>
  description: |
    快速倉頡輸入法第六代
    網址: http://www.scj2000.com
    Copyright (C) 2002-2009 麥志洪 <makchehu@netvigator.com>
    授權方式: GPL version 3
  dependencies:
    - luna_quanpin

switches:
  - name: ascii_mode
    reset: 1
    states: [ 中文, 西文 ]
  - name: full_shape
    states: [ 半角, 全角 ]
  - name: simplification
    states: [ 漢字, 汉字 ]
  - name: ascii_punct
    states: [ 。,, ., ]
 

候選字會依據使用量大的時候往前移動,很麻煩,可以做以下設定
新建或修改 scj6.custom.yaml 檔案,內容如下

patch:
  translator/enable_user_dict: false
   

 

 

2022年8月8日 星期一

Linux Mint 21 安裝 SCJ6 (快倉輸入法)

在 Linux Mint 20.3 or Ubuntu 20.04 之前的版本,可以安裝 fcitx 和 fcitx-table-scj6 的方式,就可以安裝 快倉六 的輸入法,但是,在 fcitx5 之後,好像就沒那麼容易了! 

處理的方式,參考如下: 

sudo apt update
sudo apt install fcitx5 fcitx5-chinese-addons* fcitx5-rime

除了要安裝 fcitx5 之外,還要安裝 中州韻 輸入法,它的輸入法檔案是放在
/usr/share/rime-data
這個目錄裡,所以,我們先到
https://github.com/rime/rime-scj
下載檔案, 主要是 scj6.dict.yaml 和 scj6.schema.yaml 這二個檔案,將這二個檔案下載後,放到 /usr/share/rime-data  目錄下。

接下來,到
~/.local/share/fcitx5/rime
目錄下,建立 default.custom.yaml 檔案,檔案內容如下:

patch:
    schema_list:
        - schema: scj6 
   
"
menu/page_size"
: 9

 

若是要使用其他輸入法,也可以參考 /usr/share/rime-data 目錄下的檔案名稱,替換一下。

最後,重啟一下輸入法,應該就可以正常使用了!