mirror of
https://github.com/Fluffy-Bean/dots.git
synced 2025-05-28 14:23:11 +00:00
11 lines
213 B
Bash
Executable file
11 lines
213 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [ $(bluetoothctl show | grep "Powered: yes" | wc -c) -eq 0 ]; then
|
|
echo "0"
|
|
else
|
|
if [ $(echo info | bluetoothctl | grep 'Device' | wc -c) -eq 0 ]; then
|
|
echo "1"
|
|
else
|
|
echo "2"
|
|
fi
|
|
fi
|