13 lines
209 B
Bash
Executable File
13 lines
209 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
notify-send "Connecting to Högtalare"
|
|
|
|
bluetoothctl power on
|
|
if bluetoothctl connect E8:26:CF:33:2D:BA; then
|
|
notify-send "Connected"
|
|
else
|
|
notify-send "Failed to connect to Högtalare"
|
|
fi
|