aboutsummaryrefslogtreecommitdiff
path: root/fzfdic.sh
diff options
context:
space:
mode:
Diffstat (limited to 'fzfdic.sh')
-rwxr-xr-xfzfdic.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/fzfdic.sh b/fzfdic.sh
index 0cd457d..670e5f2 100755
--- a/fzfdic.sh
+++ b/fzfdic.sh
@@ -1,8 +1,8 @@
#!/bin/sh
-dict="$(printf "EN\nES" | fzf -e --prompt="Choose a dictionary>")"
+dict="$(printf "EN\nES" | fzf -e -i --prompt="Choose a dictionary>")"
if [ "$dict" = "EN" ]; then
- fzf -e --prompt="EN" < /usr/share/dict/words.txt
+ fzf -e -i --prompt="EN>" < /usr/share/dict/words.txt
elif [ "$dict" = "ES" ]; then
- fzf -e --prompt="ES" < /usr/share/dict/palabras.txt
+ fzf -e -i --prompt="ES>" < /usr/share/dict/palabras.txt
fi