Simple utility to turn swipes into words -- "plugin" for wvkbd to enable swipe-typing under wayland SXMO.
| -rwxr-xr-x | swipeGuess.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swipeGuess.sh b/swipeGuess.sh index fe52bbd..092c1ee 100755 --- a/swipeGuess.sh +++ b/swipeGuess.sh @@ -1,7 +1,7 @@ #!/bin/sh swipeToQuery(){ - swipe=$(echo "$1" | tr -d "'") + swipe=$(echo "$1" | tr -d "'.\*\"\\^$\(\)") printf '^' printf "${swipe:0:2}" if test "${swipe:2}"; then |