plugins for wvkbd using swipeGuess
swipeGuessPicker: new behavior method
| -rwxr-xr-x | swipeGuessPicker.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/swipeGuessPicker.sh b/swipeGuessPicker.sh new file mode 100755 index 0000000..e90f64e --- /dev/null +++ b/swipeGuessPicker.sh @@ -0,0 +1,14 @@ +#!/bin/sh +rm "$XDG_RUNTIME_DIR/sgp.sock" +mkfifo "$XDG_RUNTIME_DIR/sgp.sock" +cat 0<> "$XDG_RUNTIME_DIR/sgp.sock"|suggpicker 2>/dev/null|completelyTypeWord.sh & +swipeGuess ~/.local/share/sxmo/words.txt 5 | while read -r word; do + set -- $word + if ! test "$2"; then + wtype "${1:1}" + else + echo "$word" > "$XDG_RUNTIME_DIR/sgp.sock" + fi +done + +killall suggpicker |