fix: bemenu now ignores case/noncase

This commit is contained in:
Ahwx 2024-11-07 13:45:30 +01:00
parent 0cc091894b
commit 50eb4714a2
2 changed files with 3 additions and 3 deletions

View file

@ -215,7 +215,7 @@
"$mainMod, Q, killactive,"
"$mainMod, F, fullscreen, 1" # set 1 to 0 to set full screen without waybar
"$mainMod, Space, togglefloating,"
"$mainMod, D, exec, bemenu-run -l 5"
"$mainMod, D, exec, bemenu-run -l 5 --ignorecase"
"SUPER SHIFT, L, exec, hyprlock"
"$mainMod, E, exec, thunar"
"$mainMod SHIFT, B, exec, pkill -SIGUSR1 .waybar-wrapped"
@ -223,7 +223,7 @@
"$mainMod, W ,exec, pkill wofi || wallpaper-picker"
# clipboard manager
"$mainMod SHIFT, V, exec, cliphist list | bemenu -l 5 | cliphist decode | wl-copy"
"$mainMod SHIFT, V, exec, cliphist list | bemenu -l 5 --ignorecase | cliphist decode | wl-copy"
"$mainMod SHIFT, F, exec, firefox"
"$mainMod SHIFT, W, exec, wdisplays"

View file

@ -111,7 +111,7 @@
tmp="$2"
if [ "$tmp" = "" ]
then
tmp=$($0 list | bemenu)
tmp=$($0 list | bemenu --ignorecase)
fi
device=$(get_addr_or_fail "$tmp")
is_connected=$(bluetoothctl info $device | grep -i 'connected: yes')