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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
#!/bin/sh
# Copyright 2022 Heinz Wiesinger, Amsterdam, The Netherlands
# Copyright 2022 Patrick J. Volkerding, Sebeka, MN, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
TMP=$HOME/.imconfig
if [ ! -d $TMP ]; then
mkdir -p $TMP
chmod 700 $TMP
fi
# Set up some background information:
BACKTITLE="--backtitle \"Setting default input method in $HOME/.profile.d/input-method.sh\""
# This stops --backtitle from cluttering the initial install:
if [ ! -r /proc/kcore ]; then
BACKTITLE=""
fi
# Do we already have an existing default?
unset PRESELECT
if [ -f "$HOME/.profile.d/input-method.sh" ]; then
CURRENT="$(grep QT_IM_MODULE "$HOME/.profile.d/input-method.sh" | cut -d '=' -f 2)"
if ! [ "$CURRENT" = "" ]; then
PRESELECT=" --default-item $CURRENT "
fi
fi
# Remove any previous script:
rm -f $TMP/tmpscript.sh
# Add the top of the script:
cat << EOF > $TMP/tmpscript.sh
dialog $BACKTITLE --title "SELECT DEFAULT INPUT METHOD FOR X/WAYLAND" $PRESELECT --menu \\
"Please select the default input method to use. This will define the application that is \\
being used to type non-latin characters in a desktop environment." 12 74 0 \\
EOF
# Add default "none" option to disable input methods:
echo "\"none\" \"Do not use input methods\" \\" >> $TMP/tmpscript.sh
# Add fcitx as the first and default entry:
if [ -r /usr/bin/fcitx5-autostart ]; then
echo "\"fcitx\" \"Fcitx5: Flexible Context-aware Input Tool with eXtension support\" \\" >> $TMP/tmpscript.sh
elif [ -r /usr/bin/fcitx-autostart ]; then
echo "\"fcitx\" \"Fcitx: Flexible Context-aware Input Tool with eXtension support\" \\" >> $TMP/tmpscript.sh
fi
# Add ibus:
if [ -r /usr/bin/ibus-autostart ]; then
echo "\"ibus\" \"IBus: Intelligent Input Bus\" \\" >> $TMP/tmpscript.sh
fi
# Add uim:
if [ -r /usr/bin/uim-autostart ]; then
echo "\"uim\" \"uim: Universal Input Method\" \\" >> $TMP/tmpscript.sh
fi
# Add scim:
if [ -r /usr/bin/scim-autostart ]; then
echo "\"scim\" \"SCIM: Smart Common Input Method\" \\" >> $TMP/tmpscript.sh
fi
# Then, the tail end:
cat << EOF >> $TMP/tmpscript.sh
2> $TMP/output
if [ ! \$? = 0 ]; then
rm -f $TMP/output
echo "Canceled."
exit
fi
dialog $BACKTITLE --title "SELECT DEFAULT INPUT METHOD FOR X/WAYLAND" --msgbox \\
"Changes will take effect after a re-login." 0 0
EOF
sh $TMP/tmpscript.sh
if [ ! -r $TMP/output ]; then
rm -f $TMP/tmpscript.sh
exit
fi
OUTPUT=$(cat $TMP/output)
# Create $HOME/.profile.d if it doesn't exist yet
if ! [ -e "$HOME/.profile.d" ]; then
mkdir "$HOME/.profile.d"
fi
if [ "$OUTPUT" = "none" ]; then
# Create the bash profile script
cat << EOF > "$HOME/.profile.d/input-method.sh"
# File auto-generated by imconfig
EOF
cat << EOF > "$HOME/.profile.d/input-method.csh"
# File auto-generated by imconfig
EOF
else
# Create the bash profile script
cat << EOF > "$HOME/.profile.d/input-method.sh"
# File auto-generated by imconfig
export XMODIFIERS="@im=$OUTPUT"
export XIM=$OUTPUT
export XIM_PROGRAM=$OUTPUT
export GTK_IM_MODULE=$OUTPUT
export QT_IM_MODULE=$OUTPUT
EOF
# Create the csh profile script
cat << EOF > "$HOME/.profile.d/input-method.csh"
# File auto-generated by imconfig
setenv XMODIFIERS "@im=$OUTPUT"
setenv XIM $OUTPUT
setenv XIM_PROGRAM $OUTPUT
setenv GTK_IM_MODULE $OUTPUT
setenv QT_IM_MODULE $OUTPUT
EOF
fi
rm -f $TMP/tmpscript.sh $TMP/output
|