mirror of
https://github.com/Fluffy-Bean/dots.git
synced 2025-01-29 00:38:24 +00:00
11 lines
152 B
Bash
Executable file
11 lines
152 B
Bash
Executable file
#!/bin/sh
|
|
|
|
value=$(bluetoothctl show | grep "Powered: yes" | wc -c)
|
|
|
|
if [ "$value" == 0 ]
|
|
then
|
|
bluetoothctl power on
|
|
else
|
|
bluetoothctl power off
|
|
fi
|