13 lines
244 B
Bash
13 lines
244 B
Bash
![]() |
#!/bin/bash
|
||
|
#!/bin/sh
|
||
|
if [ $(bluetoothctl show | grep "Powered: yes" | wc -c) -eq 0 ]
|
||
|
then
|
||
|
echo "%{F#66ffffff}"
|
||
|
else
|
||
|
if [ $(echo info | bluetoothctl | grep 'Device' | wc -c) -eq 0 ]
|
||
|
then
|
||
|
echo ""
|
||
|
fi
|
||
|
echo "%{F#73fa91}"
|
||
|
fi
|