mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
51d50fe463
- Mozc engine for SCIM Feature safe: yes
26 lines
596 B
Plaintext
26 lines
596 B
Plaintext
scim-mozc installation finished. To use scim-mozc, please do the following:
|
|
|
|
If you are using bash or zsh, please add following lines to your $HOME/.bashrc or
|
|
$HOME/.zshrc:
|
|
|
|
mozc_server_start
|
|
export GTK_IM_MODULE=scim
|
|
export XMODIFIERS=@im=SCIM
|
|
scim -d
|
|
|
|
If you are using tcsh, please add following lines to your $HOME/.cshrc:
|
|
|
|
mozc_server_start
|
|
setenv GTK_IM_MODULE scim
|
|
setenv XMODIFIERS @im=SCIM
|
|
scim -d
|
|
|
|
If you are using KDE4, you may create a shell script in $HOME/.kde4/env,
|
|
and add following lines:
|
|
|
|
#!/bin/sh
|
|
mozc_server_start
|
|
export GTK_IM_MODULE=scim
|
|
export XMODIFIERS=@im=SCIM
|
|
scim -d
|