8 lines
136 B
Bash
8 lines
136 B
Bash
![]() |
#!/bin/sh
|
||
|
if [ $(bluetoothctl show | grep "Powered: yes" | wc -c) -eq 0 ]
|
||
|
then
|
||
|
bluetoothctl power on
|
||
|
else
|
||
|
bluetoothctl power off
|
||
|
fi
|