Skip to content

Commit

Permalink
[scripts] fix ignore case arg when using dmenu
Browse files Browse the repository at this point in the history
  • Loading branch information
meain committed Feb 2, 2024
1 parent ce1f16d commit 9623a7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/.local/bin/utils/,picker
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fzf_cmd="fzf"
if [ "$GUI_PICKER" = 1 ]; then
[ -n "$prompt" ] && dmenu_cmd="$dmenu_cmd -p '$prompt'"
[ -n "$lines" ] && dmenu_cmd="$dmenu_cmd -l '$lines'"
[ -n "$ignore_case" ] && dmenu_cmd="$dmenu_cmd -i '$lines'"
[ -n "$ignore_case" ] && dmenu_cmd="$dmenu_cmd -i"
eval "$dmenu_cmd"
else
[ -n "$prompt" ] && fzf_cmd="$fzf_cmd --prompt '$prompt'"
Expand Down

0 comments on commit 9623a7c

Please sign in to comment.