plugins for wvkbd using swipeGuess
1
2
3
4
5
6
7
8
9
10
11
12
13
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