plugins for wvkbd using swipeGuess
predictor: use wl-ime-type instead of wtype
for performance
| -rwxr-xr-x | predictor.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/predictor.sh b/predictor.sh index bcdae44..7fd4998 100755 --- a/predictor.sh +++ b/predictor.sh @@ -32,9 +32,9 @@ typeSomehow(){ IFS='' while read -r word; do if test -e "$complete"; then - test -n "${word:1}" && wtype -- "${word:1}" + test -n "${word:1}" && wl-ime-type -- "${word:1}" else - wtype -- "$word" + wl-ime-type -- "$word" fi done } |