Simple utility to turn swipes into words -- "plugin" for wvkbd to enable swipe-typing under wayland SXMO.
addWord: helper utility
| -rwxr-xr-x | addWord.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/addWord.sh b/addWord.sh new file mode 100755 index 0000000..9c4168c --- /dev/null +++ b/addWord.sh @@ -0,0 +1,3 @@ +#!/bin/sh +cat ~/.local/share/sxmo/words.txt - > /tmp/unsortedwords.txt +mapScore ~/.local/share/sxmo/keyboard.map.tsv </tmp/unsortedwords.txt | sort -nr | cut -f2 > ~/.local/share/sxmo/words.txt |