mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
a197ce3276
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
12 lines
235 B
Bash
12 lines
235 B
Bash
#!/bin/sh
|
|
|
|
# hime-ime is a chinese-input-method.
|
|
|
|
if [ -x /usr/bin/hime ]; then
|
|
export XMODIFIERS="@im=hime"
|
|
export GTK_IM_MODULE="hime"
|
|
export QT_IM_MODULE="hime"
|
|
export XIM_PROGRAM="/usr/bin/hime -d"
|
|
fi
|
|
|
|
# /usr/bin/hime -d &
|