From 584dd7d7c6ac75f70ceaeec969ff7f6ba7c4457d Mon Sep 17 00:00:00 2001 From: Saumit Dinesan <79687674+justsaumit@users.noreply.github.com> Date: Sat, 26 Feb 2022 11:34:04 +0530 Subject: Update bts --- scripts/bts | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'scripts') diff --git a/scripts/bts b/scripts/bts index 29b9200..0929f73 100644 --- a/scripts/bts +++ b/scripts/bts @@ -3,14 +3,17 @@ status=$(systemctl status bluetooth | grep Active | cut -d " " -f 7) case $status in "active") bluetoothctl power on - bluetoothctl connect A1:B3:EC:B1:53:60 - notify-send "Bluetooth Device is connected";; - "inactive" | "failed") + bluetoothctl connect A1:B3:EC:B1:53:60 && sleep 5 && + pmstat=$(pactl list | grep "Active Profile" | sed '2p;d' | cut -d ' ' -f 3) + [ "$pmstat" = ("a2dp_sink" || "handsfree_head_unit") ] && notify-send "Bluetooth Device is connected"|| notify-send "Unable to connect! Check whether the bluetooth device is switched on.";; + + "inactive" | "failed") export SUDO_ASKPASS=/home/saumit/.scripts/dpass sudo -A systemctl start bluetooth - #st -e sudo systemctl start bluetooth + #st -e sudo systemctl start bluetooth && notify-send "Bluetooth daemon is running" bluetoothctl power on - bluetoothctl connect A1:B3:EC:B1:53:60 - notify-send "Bluetooth Device is connected";; + bluetoothctl connect A1:B3:EC:B1:53:60 && + pmstat=$(pactl list | grep "Active Profile" | sed '2p;d' | cut -d ' ' -f 3) + [ "$pmstat" = "a2dp_sink" ] && notify-send "Bluetooth Device is connected" || notify-send "Unable to connect! Check whether the bluetooth device is switched on.";; esac -- cgit v1.2.3