5 lines
145 B
Bash
Executable File
5 lines
145 B
Bash
Executable File
#!/bin/bash
|
|
notify-send "Disconnecting all BT devices"
|
|
bluetoothctl devices Connected | awk '{print $2}' | xargs -r -n1 bluetoothctl disconnect
|
|
|