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

17 lines
395 B
Bash
Executable file

#!/usr/bin/env bash
while true
do
while killall -0 .blueman-manage > /dev/null 2>&1
do
if [[ $(bluetoothctl show | grep Powered | grep yes) ]]; then
if [[ $(hyprctl activewindow | grep blueman-manager) == "" && $(hyprctl clients | grep blueman-manager) != "" ]]; then
killall .blueman-manage
break
fi
sleep 0.1
fi
done
sleep 0.1
done