From 8a26726ebeb60a76c51f7ef258dc8d4ab287c1a3 Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Wed, 1 May 2024 02:36:30 +0300 Subject: Made searching case insensitive --- scripts/.scripts/books.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/.scripts/books.sh b/scripts/.scripts/books.sh index d2f8da4..307ec89 100755 --- a/scripts/.scripts/books.sh +++ b/scripts/.scripts/books.sh @@ -14,7 +14,7 @@ choice=$(ls -a "$path" | dmenu -i -l 10) new_choice=$choice while [ -d "$path/$new_choice" ]; do - choice=$(ls -a "$path/$new_choice" | dmenu -l 10) + choice=$(ls -a "$path/$new_choice" | dmenu -i -l 10) new_choice+="/" new_choice+=$choice #path/books for cs/ done -- cgit v1.2.3