Files
allhaileris afb81b8278
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
init
2026-02-16 15:50:16 +03:00

49 lines
1.3 KiB
Plaintext

# start hime (upstream version)
# vim: set sts=4 expandtab:
if [ "$IM_CONFIG_PHASE" = 2 ]; then
# start hime daemon
/usr/bin/hime &
fi
if [ "$IM_CONFIG_PHASE" = 1 ]; then
# set variables for the plain XIM
XMODIFIERS=@im=hime
GTK_IM_MODULE=xim
# use hime immodule only when available for both GTK 2.0 and 3.0
IM_CONFIG_MARKER2=0
for IM_CONFIG_MARKER in /usr/lib/*/gtk-2.0/*/immodules/im-hime.so \
/usr/lib/gtk-2.0/*/immodules/im-hime.so; do
if [ -e "$IM_CONFIG_MARKER" ]; then
IM_CONFIG_MARKER2=1
break
fi
done
IM_CONFIG_MARKER3=0
for IM_CONFIG_MARKER in /usr/lib/*/gtk-3.0/*/immodules/im-hime.so \
/usr/lib/gtk-3.0/*/immodules/im-hime.so; do
if [ -e "$IM_CONFIG_MARKER" ]; then
IM_CONFIG_MARKER3=1
break
fi
done
if [ "$IM_CONFIG_MARKER2" = 1 ] && [ "$IM_CONFIG_MARKER3" = 1 ]; then
GTK_IM_MODULE=hime
fi
# use immodule when available for Qt5
for IM_CONFIG_MARKER in /usr/lib/*/qt5/plugins/platforminputcontexts/im-hime.so \
/usr/lib/qt5/plugins/platforminputcontexts/im-hime.so; do
if [ -e "$IM_CONFIG_MARKER" ]; then
QT_IM_MODULE=hime
break
fi
done
# hime has no clutter support
CLUTTER_IM_MODULE=xim
fi