mirror of
https://github.com/Fluffy-Bean/dots.git
synced 2025-01-29 00:38:24 +00:00
13 lines
216 B
Bash
Executable file
13 lines
216 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ $(bluetoothctl show | grep "Powered: yes" | wc -c) -eq 0 ]
|
|
then
|
|
echo "%{F#666}"
|
|
else
|
|
if [ $(echo info | bluetoothctl | grep 'Device' | wc -c) -eq 0 ]
|
|
then
|
|
echo ""
|
|
fi
|
|
echo ""
|
|
fi
|