10 lines
117 B
Bash
Executable File
10 lines
117 B
Bash
Executable File
input=$(ibus engine | grep BambooUs)
|
|
|
|
if [ -n "$input" ]
|
|
then
|
|
echo "EN ⠀⠀"
|
|
else
|
|
echo "VN ⠀⠀"
|
|
fi
|
|
|