#!/bin/sh sock="$XDG_RUNTIME_DIR/sgp.sock" words=~/.local/share/sxmo/words.txt rm "$sock" mkfifo "$sock" cat 0<> "$sock"|suggpicker 2>/dev/null|completelyTypeWord.sh & swipeGuess "$words" 5 | while read -r word; do set -- $word if test "$1" && ! test "$2"; then wtype "${1:1}" elif ! test "$2"; then echo "" >> "$sock" else echo "$word" >> "$sock" fi done killall suggpicker