mirror of
https://github.com/Fluffy-Bean/dots.git
synced 2025-05-14 07:42:14 +00:00
7 lines
136 B
Bash
Executable file
7 lines
136 B
Bash
Executable file
#!/bin/sh
|
|
if [ $(bluetoothctl show | grep "Powered: yes" | wc -c) -eq 0 ]
|
|
then
|
|
bluetoothctl power on
|
|
else
|
|
bluetoothctl power off
|
|
fi
|