mirror of
https://github.com/SinTan1729/random.git
synced 2024-12-25 20:58:37 -06:00
10 lines
No EOL
252 B
Text
10 lines
No EOL
252 B
Text
# Toggles bluetooth on a Linux system. Make sure that you have bluetoothctl installed.
|
|
# I use it with a shortcut.
|
|
|
|
#!/bin/bash
|
|
|
|
if [ $(bluetoothctl show | grep Powered | grep -c yes) -eq 1 ]; then
|
|
bluetoothctl power off
|
|
else
|
|
bluetoothctl power on
|
|
fi |