Simple utility to turn swipes into words -- "plugin" for wvkbd to enable swipe-typing under wayland SXMO.
Diffstat (limited to 'firstComplete.sh')
-rwxr-xr-xfirstComplete.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/firstComplete.sh b/firstComplete.sh
index 0a75e88..de13a92 100755
--- a/firstComplete.sh
+++ b/firstComplete.sh
@@ -1,3 +1,5 @@
#!/bin/sh
-read -r word
-sxmo_type.sh ${word:1}
+type=wtype
+while read -r word; do
+ test "${word:1}" && $type "${word:1}"
+done