aboutsummaryrefslogtreecommitdiff
path: root/scripts/scripts/bluetooth.sh
blob: 85b7f08947fc6f8bd6a65fd087b4d0803b57ee3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash

connections=$( hcitool con )
devices=$( hcitool dev | wc -l )

if [ $devices = 1 ] 
then
	echo -n ""
elif [[ $devices > 1 && $connections = "Connections:" ]]
then
	echo -n ""
else
	echo -n ""
fi