mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
13 lines
235 B
Bash
13 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 &
|