Simple utility to turn swipes into words -- "plugin" for wvkbd to enable swipe-typing under wayland SXMO.
Diffstat (limited to 'completelyTypeWord.sh')
| -rwxr-xr-x | completelyTypeWord.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/completelyTypeWord.sh b/completelyTypeWord.sh new file mode 100755 index 0000000..de13a92 --- /dev/null +++ b/completelyTypeWord.sh @@ -0,0 +1,5 @@ +#!/bin/sh +type=wtype +while read -r word; do + test "${word:1}" && $type "${word:1}" +done |