16 lines
299 B
Bash
Executable File
16 lines
299 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
name=$(bluetoothctl info | grep "Name" | sed 's/.*Name: //')
|
|
battery=$(bluetoothctl info | grep "Battery" | sed 's/.*(//;s/)//')
|
|
if [ ! "$name" ]
|
|
then
|
|
echo ""
|
|
else
|
|
echo -n "" $name;
|
|
if [ "$battery" ]
|
|
then
|
|
echo -n " ($battery%)"
|
|
fi
|
|
echo ""
|
|
fi
|