aboutsummaryrefslogtreecommitdiff
path: root/Scripts/.local/scripts/status/bluetooth-status
blob: c34694c5c52042e6350a50e1823a1648245ecf59 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env sh

name=$(bluetoothctl info | grep "Name" | sed 's/.*Name: //')
if [ ! "$name" ]
then
    echo ""
else
    echo "" $name;
fi