12 lines
200 B
Bash
Executable File
12 lines
200 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Author by : Daniel Heras
|
|
# Mail : dani.heras@hotmail.com
|
|
|
|
if [ $(bluetoothctl show | grep "Powered: yes" | wc -c) -eq 0 ]
|
|
then
|
|
bluetoothctl power on
|
|
else
|
|
bluetoothctl power off
|
|
fi
|