blob: 7354fc3d83799ba5907ebfa2b749e79aeffe5feb (
plain) (
blame)
1
2
3
4
5
|
#!/bin/sh
STATUS=$(systemctl is-active bluetooth)
[ "$STATUS" != "active" ] && exit
HEADPHONES=$(bluetoothctl info 38:18:4C:59:C1:B0 | grep "Connected: yes")
if [ "$HEADPHONES" ]; then echo "\003\001"; else echo "\003\001"; fi;
|