fix bspwm is_floating check to work with letters in wid

with case insensitive grep
long-opts
angelic-sedition 10 years ago
parent a1e0e8361e
commit b2edeab31f

@ -134,7 +134,7 @@ wm_autoset_for_hide_show() {
if [[ $wm == bspwm ]]; then if [[ $wm == bspwm ]]; then
is_floating() { is_floating() {
# checking if the window id (converted from decimal to hex) is floating; empty if not floating # checking if the window id (converted from decimal to hex) is floating; empty if not floating
bspc query -T | grep "$(printf 0x%x "$1").*f-" bspc query -T | grep -i "$(printf 0x%x "$1").*f-"
} }
elif [[ $wm == i3 ]]; then elif [[ $wm == i3 ]]; then
is_floating() { is_floating() {

Loading…
Cancel
Save