nixos-configs/hypr/scripts/lose-focus.sh

17 lines
384 B
Bash
Raw Normal View History

2023-05-28 19:35:37 -04:00
#!/bin/bash
while true
do
while killall -0 blueman-manager
do
2023-05-29 13:55:08 -04:00
if [[ $(bluetoothctl show | grep Powered | grep yes) ]]; then
if [[ $(hyprctl activewindow | grep blueman-manager) == "" && $(hyprctl clients | grep blueman-manager) != "" ]]; then
2023-05-29 13:55:08 -04:00
killall blueman-manager
break
fi
sleep 0.1
2023-05-28 19:35:37 -04:00
fi
done
sleep 0.1
done