6 lines
93 B
Bash
6 lines
93 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
if bluetoothctl show > /dev/null 2>&1; then
|
||
|
bluetoothctl power off
|
||
|
fi
|