blob: 4bef88fe8ff1e775e7627d56da03e9d1a14ec794 (
plain)
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
|
#!/bin/bash
#Janky ibus table boshiamy implementation for tmux, this variant prints
#characters using braille display
#gets current window id of IME and puts it here
code=""
clear
while true; do
#need IFS="" so read reads spaces
OIFS=$IFS
export IFS=""; read -rsn1 i
export IFS=$OIFS
#echo ".$i."
if [[ "$i" = [abcdefghijklmnopqrstuvwxyz,.] ]]; then
clear
#escape periods
i=$(echo $i |sed 's/\./\\\./g')
code=$code$i
opt=$(grep "^$code\s" ~/lang/zh/boshiamy/ibus-boshiamy/boshiamy.txt |\
#remove simplfied
grep -v 98|\
awk '{print $3" "$2}' |\
sort -nr|\
awk '{print $2}')
echo $opt
echo $code
#because the braille font display is incredibly slow, truncate
# to first 5 options, this is unicode aware
opt=${opt:0:5}
#send options to textd for braille display, 8x8 bdf fonts
#assumed to be here
echo $opt | textd ~/lang/fonts/12
elif [[ "$i" = [0123456789] ]]; then
if [ "$code" == "" ]; then
char=$i
else
clear
char=$(echo $opt | awk "{print \$$i}")
code=""
fi
tmux send-key -t "!" "$char"
#dirty hack for detecting space
elif [ "<$i>" == "< >" ]; then
if [ "$code" == "" ]; then
char=" "
else
clear
char=$(echo $opt | awk "{print \$1}")
code=""
fi
tmux send-key -t "!" "$char"
elif [[ "$i" = '`' ]]; then
clear
code=""
#if enter is pressed then I am done editing
elif [[ "$i" = "" ]]; then
#-r "!" means the previous window
tmux send-keys -t "!" Enter
else
tmux send-key -t "!" "$i"
fi
done
|