diff options
Diffstat (limited to '.local/share/bin')
-rwxr-xr-x | .local/share/bin/fcitx5-temp-off | 8 | ||||
-rwxr-xr-x | .local/share/bin/fcitx5-temp-restore | 7 |
2 files changed, 15 insertions, 0 deletions
diff --git a/.local/share/bin/fcitx5-temp-off b/.local/share/bin/fcitx5-temp-off new file mode 100755 index 0000000..b2f8ea9 --- /dev/null +++ b/.local/share/bin/fcitx5-temp-off @@ -0,0 +1,8 @@ +#!/bin/sh +mkdir -p "$XDG_DATA_HOME/fcitx5" +fcitx5-remote > "$XDG_DATA_HOME/fcitx5/state" +fcitx5-remote -n > "$XDG_DATA_HOME/fcitx5/ime_name" + +fcitx5-remote -c +fcitx5-remote -s 'keyboard-us' + diff --git a/.local/share/bin/fcitx5-temp-restore b/.local/share/bin/fcitx5-temp-restore new file mode 100755 index 0000000..d00b11c --- /dev/null +++ b/.local/share/bin/fcitx5-temp-restore @@ -0,0 +1,7 @@ +#!/bin/sh +[ ! -e "$XDG_DATA_HOME/fcitx5/state" ] && exit +[ ! -e "$XDG_DATA_HOME/fcitx5/ime_name" ] && exit + +[ `cat "$XDG_DATA_HOME/fcitx5/state"` = "1" ] && fcitx5-remote -c +[ `cat "$XDG_DATA_HOME/fcitx5/state"` = "2" ] && fcitx5-remote -o +cat "$XDG_DATA_HOME/fcitx5/ime_name" | xargs fcitx5-remote -s |