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 04:FE:A1:71:4C:70; then
|
|
notify-send "Connected"
|
|
else
|
|
notify-send "Failed to connect to Högtalare"
|
|
fi
|