aboutsummaryrefslogtreecommitdiff
path: root/scripts/.scripts/books.sh
diff options
context:
space:
mode:
authoromagdy7 <omar.professional8777@gmail.com>2024-05-01 02:36:30 +0300
committeromagdy7 <omar.professional8777@gmail.com>2024-05-01 02:36:30 +0300
commit8a26726ebeb60a76c51f7ef258dc8d4ab287c1a3 (patch)
tree1f226b0212b95923133022dfc7f7c909d1e11607 /scripts/.scripts/books.sh
parent342e5ef441cb4d4d681e63d54e00e78daee0e5bc (diff)
downloaddotfiles-8a26726ebeb60a76c51f7ef258dc8d4ab287c1a3.tar.xz
dotfiles-8a26726ebeb60a76c51f7ef258dc8d4ab287c1a3.zip
Made searching case insensitive
Diffstat (limited to 'scripts/.scripts/books.sh')
-rwxr-xr-xscripts/.scripts/books.sh2
1 files changed, 1 insertions, 1 deletions
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