forked from pool/fcitx
Takashi Iwai
70b7a4fe79
- Fix logging not to include the build path (boo#951602) - Several fixes and cleanup for starting fcitx on GNOME on Leap (boo#947576,boo#942816) * Remove the superfluous manual dbus-launch from xim script * Use xdg autostart for GNOME, KDE, LXDE and XFCE; fcitx-autostart script is also modified to check $INPUT_METHOD * Delay start of fcitx daemon a bit, too OBS-URL: https://build.opensuse.org/request/show/340480 OBS-URL: https://build.opensuse.org/package/show/M17N/fcitx?expand=0&rev=124
22 lines
500 B
Plaintext
22 lines
500 B
Plaintext
#make sure set these vars before dbus-launch
|
|
export LC_CTYPE=$LANG
|
|
export XMODIFIERS="@im=fcitx"
|
|
export GTK_IM_MODULE=fcitx
|
|
export QT_IM_SWITCHER=imsw-multi
|
|
export QT_IM_MODULE=fcitx
|
|
|
|
case "$WINDOWMANAGER" in
|
|
*gnome*|*kde*|*xfce*|*lxde*)
|
|
# started via xdg autostart (boo#947576)
|
|
# explicitly set below, as referred in xdg autostart
|
|
export INPUT_METHOD=fcitx
|
|
;;
|
|
*)
|
|
# FIXME: a little bit of delay is required to avoid race (boo#947576)
|
|
(sleep 2; fcitx -d) &
|
|
;;
|
|
esac
|
|
|
|
# success:
|
|
return 0
|