forked from pool/fcitx
Takashi Iwai
a3d181aa12
revert the last change, as it's fixed in xim script instead. OBS-URL: https://build.opensuse.org/request/show/210122 OBS-URL: https://build.opensuse.org/package/show/M17N/fcitx?expand=0&rev=82
23 lines
549 B
Plaintext
23 lines
549 B
Plaintext
if ! type -p fcitx > /dev/null 2>&1 ; then
|
|
echo "fcitx is not installed. please run `sudo zypper in fcitx`."
|
|
return 1
|
|
fi
|
|
|
|
#make sure set these vars before dbus-launch
|
|
export LC_CTYPE=$LANG
|
|
export XMODIFIERS="@im=fcitx"
|
|
export GTK_IM_MODULE=fcitx
|
|
export GTK3_IM_MODULE=fcitx
|
|
export QT_IM_SWITCHER=imsw-multi
|
|
export QT_IM_MODULE=fcitx
|
|
|
|
# Avoid relying on autolaunch to improvise D-Bus sessions for each process
|
|
if test -z "$DBUS_SESSION_BUS_ADDRESS" ; then
|
|
eval `dbus-launch --sh-syntax --exit-with-session`
|
|
fi
|
|
|
|
fcitx -d
|
|
|
|
# success:
|
|
return 0
|