mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
9 lines
145 B
Bash
Executable File
9 lines
145 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
if [ $(bluetoothctl show | grep "Powered: yes" | wc -c) -eq 0 ]
|
|
then
|
|
bluetoothctl power on
|
|
else
|
|
bluetoothctl power off
|
|
fi
|