This file is indexed.

/usr/share/im-config/data/24_uim.rc is in im-config 0.29-1ubuntu12.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# start uim
# vim: set sts=4 expandtab:

if [ "$IM_CONFIG_PHASE" = 2 ]; then
# start uim-xim daemon
if [ -x /usr/bin/uim-xim ]; then
    /usr/bin/uim-xim &
fi
# Starting GUI
if [ -x /usr/bin/uim-toolbar ]; then
    uim-toolbar &
elif [ -x /usr/bin/uim-toolbar-gtk3-systray ]; then
    uim-toolbar-gtk3-systray &
elif [ -x /usr/bin/uim-toolbar-gtk3 ]; then
    uim-toolbar-gtk3 &
elif [ -x /usr/bin/uim-toolbar-gtk-systray ]; then
    uim-toolbar-gtk-systray &
elif [ -x /usr/bin/uim-toolbar-gtk ]; then
    uim-toolbar-gtk &
elif [ -x /usr/bin/uim-toolbar-qt4 ]; then
    uim-toolbar-qt4 &
elif [ -x /usr/bin/uim-toolbar-qt ]; then
    uim-toolbar-qt &
fi

fi

if [ "$IM_CONFIG_PHASE" = 1 ]; then
# set variables for the plain XIM
XMODIFIERS=@im=uim

GTK_IM_MODULE=xim
# use 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-uim.so \
                        /usr/lib/gtk-2.0/*/immodules/im-uim.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-uim.so \
                        /usr/lib/gtk-3.0/*/immodules/im-uim.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=uim
fi

QT4_IM_MODULE=xim
# use immodule when available for Qt4
for IM_CONFIG_MARKER in /usr/lib/*/qt4/plugins/inputmethods/libuiminputcontextplugin.so \
                        /usr/lib/qt4/plugins/inputmethods/libuiminputcontextplugin.so ; do
    if [ -e $IM_CONFIG_MARKER ]; then
        QT4_IM_MODULE=uim
        break
    fi
done
QT_IM_MODULE=xim
# use immodule when available for Qt5
for IM_CONFIG_MARKER in /usr/lib/*/qt5/plugins/inputmethods/libquiminputcontextplugin.so ; do
    if [ -e $IM_CONFIG_MARKER ]; then
        QT_IM_MODULE=uim
        break
    fi
done


CLUTTER_IM_MODULE=xim
fi