I have problems with fcixt-5 and mozc. How can I toggle hiragana and katakana? I have eng keyboard dell latitude 5430
It is not very clear to me if you have already installed this package
Also I don’t know how hiragana and katakana capable that package is.
@cascadeoftears ,
Actually, F7 switches to katakana and F6 to hiragana.
But only for the fresh input with mozc.
If you want a real toggle ie. with one key, I wish you good luck.
I’ve played with ydotool but the toggle feature did not worked for me.
cat ./moz_t.sh
#!/bin/sh
TOGGLE="$HOME/.toggle"
if [ ! -e $TOGGLE ]; then
ydotool key 64:1 64:0
touch $TOGGLE
else
ydotool key 65:1 65:0
rm $TOGGLE
fi