From c1243cf0fc63425ebc600f15509b93be71a389d9 Mon Sep 17 00:00:00 2001 From: InigoGutierrez Date: Mon, 22 Apr 2019 18:27:40 +0200 Subject: Minor updates. --- fzfdic.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'fzfdic.sh') 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 -- cgit v1.2.1