🐛 Let rofi match case insensitively as well (#14)
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Yann Büchau 2022-09-09 15:50:17 +02:00 committed by GitHub
parent 1ad38107d4
commit ec9020150c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
bemoji
View File

@ -180,7 +180,7 @@ _picker() {
elif command -v wofi >/dev/null 2>&1; then
wofi -p 🔍 -i --show dmenu
elif command -v rofi >/dev/null 2>&1; then
rofi -p 🔍 -dmenu --kb-custom-1 "Alt+1" --kb-custom-2 "Alt+2"
rofi -p 🔍 -i -dmenu --kb-custom-1 "Alt+1" --kb-custom-2 "Alt+2"
elif command -v dmenu >/dev/null 2>&1; then
dmenu -p 🔍 -i -l 20
else