Simple utility to turn swipes into words -- "plugin" for wvkbd to enable swipe-typing under wayland SXMO.
completelyTypeWord.sh: Use POSIX compliant substitution
| -rwxr-xr-x | completelyTypeWord.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/completelyTypeWord.sh b/completelyTypeWord.sh index de13a92..4c862c4 100755 --- a/completelyTypeWord.sh +++ b/completelyTypeWord.sh @@ -1,5 +1,5 @@ #!/bin/sh type=wtype while read -r word; do - test "${word:1}" && $type "${word:1}" + test "${word#?}" && $type "${word#?}" done |