diff options
-rw-r--r-- | scripts/bts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/bts b/scripts/bts index 0929f73..3e91f35 100644 --- a/scripts/bts +++ b/scripts/bts @@ -4,8 +4,8 @@ case $status in "active") bluetoothctl power on 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.";; + pmstat=$(pactl list | grep "Active Profile" | sed '2p;d' | cut -d ' ' -f 3) + [ -n "$pmstat" ] && 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 @@ -14,6 +14,6 @@ case $status in notify-send "Bluetooth daemon is running" bluetoothctl power on 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 + pmstat=$(pactl list | grep "Active Profile" | sed '2p;d' | cut -d ' ' -f 3) + [ -n "$pmstat" ] && notify-send "Bluetooth Device is connected" || notify-send "Unable to connect! Check whether the bluetooth device is switched on.";; + esac |