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

17 lines
389 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 -q 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