This repository has been archived on 2025-07-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2025-05-14 02:34:47 +03:00

9 lines
218 B
Bash
Executable File

devices_amount=$(bluetoothctl devices | cut -f2 -d' ' | while read uuid; do bluetoothctl info $uuid; done|grep -e "Connected: yes" | wc -l)
if [ $devices_amount -gt 0 ]; then
echo $devices_amount
else
echo ""
fi