mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
14 lines
241 B
Bash
Executable File
14 lines
241 B
Bash
Executable File
#!/usr/bin/env 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#2193ff}"
|
|
fi
|
|
|