mirror of
https://github.com/eliasrenman/dotfiles.git
synced 2026-03-16 20:46:08 +01:00
11 lines
209 B
Bash
11 lines
209 B
Bash
#!/bin/sh
|
|
if [ $(bluetoothctl show | grep "Powered: yes" | wc -c) -eq 0 ]
|
|
then
|
|
echo ""
|
|
else
|
|
if [ $(echo info | bluetoothctl | grep 'Device' | wc -c) -eq 0 ]
|
|
then
|
|
echo ""
|
|
fi
|
|
echo ""
|
|
fi |