diff options
-rwxr-xr-x | fzfdic.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ dict="$(printf "EN\nES" | fzf -e -i --prompt="Choose a dictionary>")" if [ "$dict" = "EN" ]; then - fzf -e -i --prompt="EN>" < /usr/share/dict/words.txt + fzf -x -i --prompt="EN>" < "$CONFIG_DIC_EN" elif [ "$dict" = "ES" ]; then - fzf -e -i --prompt="ES>" < /usr/share/dict/palabras.txt + fzf -x -i --prompt="ES>" < "$CONFIG_DIC_ES" fi |