nickclyde / rofi-bluetooth

🔷 A script that generates a rofi menu that uses bluetoothctl to connect to bluetooth devices and display status info.
GNU General Public License v3.0
481 stars 51 forks source link

Feature Request: Case Insensitivity #17

Closed themooleman closed 1 year ago

themooleman commented 2 years ago

Hi,

I really enjoy this script but I would love if it weren't case sensitive. I don't see how case sensitivity is of any benefit for this utility and rofi is, by default, case-insensitive.

Would you be willing to offer the option to disable case sensitivity?

Thanks

joshpetit commented 1 year ago

Yea I would definitely like to see this as well, an option to disable it would be awesome!

eterniter06 commented 1 year ago

Add the -i flag when using -dmenu to enable case-insensitivity: https://github.com/davatorium/rofi/issues/559

Changing rofi_command="rofi -dmenu $* -p" to rofi_command="rofi -dmenu -i $* -p" will make it case-insensitive

themooleman commented 1 year ago

Perfect! Thanks!