e727e3f5f7
fix bnc#746612 OBS-URL: https://build.opensuse.org/request/show/104872 OBS-URL: https://build.opensuse.org/package/show/M17N/ibus?expand=0&rev=35
59 lines
1.6 KiB
Plaintext
59 lines
1.6 KiB
Plaintext
OLD_PATH=$PATH
|
|
PATH=/usr/bin:/usr/X11R6/bin:/opt/kde3/bin:$PATH
|
|
|
|
if ! type -p ibus-daemon > /dev/null 2>&1 ; then
|
|
echo "ibus is not available."
|
|
PATH=$OLD_PATH
|
|
return 1
|
|
fi
|
|
|
|
#when skim installed, Autostart must be "false".
|
|
#here we move $HOME/.kde/share/config/skimrc to skimrc.orig.ibus
|
|
case "$WINDOWMANAGER" in
|
|
*kde*)
|
|
if type -p skim > /dev/null 2>&1 \
|
|
&& ! grep -i -q "^[[:space:]]*Autostart.*=.*false" $HOME/.kde/share/config/skimrc
|
|
then
|
|
if [ -f $HOME/.kde/share/config/skimrc.orig.ibus ] ; then
|
|
mv -f $HOME/.kde/share/config/skimrc $HOME/.kde/share/config/skimrc.orig.ibus
|
|
chmod 777 $HOME/.kde/share/config/skimrc.orig.ibus
|
|
fi
|
|
cat > $HOME/.kde/share/config/skimrc << __END
|
|
[General]
|
|
Autostart=false
|
|
__END
|
|
chmod 777 $HOME/.kde/share/config/skimrc
|
|
else
|
|
# do nothing
|
|
:
|
|
fi
|
|
;;
|
|
*)
|
|
# do nothing
|
|
;;
|
|
esac
|
|
|
|
# Determine the LC_CTYPE locale category setting
|
|
#tmplang=${LC_ALL-${LC_CTYPE-${LANG-en_US}}}
|
|
|
|
export LC_CTYPE=$LANG
|
|
export XMODIFIERS="@im=ibus"
|
|
export GTK_IM_MODULE=ibus
|
|
export QT_IM_SWITCHER=imsw-multi
|
|
if [ -e /usr/$SYS_LIB/qt4/plugins/inputmethods/libqtim-ibus.so ]; then
|
|
export QT_IM_MODULE=ibus
|
|
else
|
|
export QT_IM_MODULE=xim
|
|
fi
|
|
|
|
if [ -z $DBUS_SESSION_BUS_ADDRESS ]; then
|
|
eval `dbus-launch --sh-syntax --exit-with-session --close-stderr < /dev/null`
|
|
fi
|
|
|
|
ibus-daemon --xim -d
|
|
|
|
PATH=$OLD_PATH
|
|
|
|
# success:
|
|
return 0
|