Computers/Linux
Configuration of Korean input method for KDE in OpenSuSE 10.0
Dr.TeKtOn
2006. 4. 10. 05:07
1. Download and install nabi from http://nabi.kldp.net/
2. Copy /etc/X11/xim.d/ami to /etc/X11/xim.d/nabi, and change "ami" to "nabi" in the file.
/etc/X11/xim.d/nabi
2. Copy /etc/X11/xim.d/ami to /etc/X11/xim.d/nabi, and change "ami" to "nabi" in the file.
/etc/X11/xim.d/nabi
3. Add the following line to /etc/sysconfig/language file.OLD_PATH=$PATH
PATH=/usr/bin:/usr/X11R6/bin:$PATH
if ! type -p nabi > /dev/null 2>&1 ; then
echo "nabi is not available."
return 1
fi
export XMODIFIERS=@im=nabi
export GTK_IM_MODULE=xim
export QT_IM_SWITCHER=imsw-multi
export QT_IM_MODULE=xim
case "$WINDOWMANAGER" in
*kde|*windowmaker|*wmaker
nabi -wm -wait &
;;
*)
nabi &
;;
esac
PATH=$OLD_PATH
# success:
return 0
4. Make a $HOME/.xim file including following lines.INPUT_METHOD="nabi"
5. Restart X server.export XMODIFIERS="@im=nabi"
export GTK_IM_MODULE=xim
export QT_IM_SWITCHER=imsw-multi
export QT_IM_MODULE=xim
nabi &