13 lines
202 B
Bash
Executable File
13 lines
202 B
Bash
Executable File
#!/usr/bin/env zsh
|
||
|
||
local ime_sym='?'
|
||
case "$(fcitx5-remote -n)" in
|
||
'keyboard-us')
|
||
ime_sym='E'
|
||
;;
|
||
'mozc')
|
||
ime_sym="和"
|
||
;;
|
||
esac
|
||
printf ' %s' "${ime_sym}"
|